From 99da4fce661e056e327057b10660ed0fd4cccda8 Mon Sep 17 00:00:00 2001 From: RealityWinner <31143064+RealityWinner@users.noreply.github.com> Date: Tue, 6 Jun 2023 05:37:27 -0400 Subject: [PATCH] Update Items.lua (#4) Add "Realm Bound" to IsSoulbound check --- TradeSkillMaster/Util/Items.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TradeSkillMaster/Util/Items.lua b/TradeSkillMaster/Util/Items.lua index ace4073..71f5405 100644 --- a/TradeSkillMaster/Util/Items.lua +++ b/TradeSkillMaster/Util/Items.lua @@ -189,11 +189,11 @@ function TSMAPI:IsSoulbound(bag, slot) for id=1, scanTooltip:NumLines() do local text = _G["TSMSoulboundScanTooltipTextLeft" .. id] text = text and text:GetText() - if text and ((text == ITEM_BIND_ON_PICKUP and id < 4) or text == ITEM_SOULBOUND or text == ITEM_BIND_QUEST) then + if text and ((text == ITEM_BIND_ON_PICKUP and id < 4) or text == ITEM_SOULBOUND or text == ITEM_BIND_QUEST or text == ITEM_ACCOUNTBOUND) then resultsCache[slotID] = {soulbound=true} break end end resultsCache[slotID].lastUpdate = GetTime() return resultsCache[slotID].soulbound -end \ No newline at end of file +end