From 7ee52b3ba7c3e367bcfe2e4a07c9a2e790c348c6 Mon Sep 17 00:00:00 2001 From: Yanick Date: Sun, 20 Jul 2025 19:39:15 +0200 Subject: [PATCH] Adjusted the tooltip line index for soulbound With the tooltip changes placing the item level at the top, the index for the soulbound identifier may now fall outside the previously expected range --- ItemRack/ItemRack.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ItemRack/ItemRack.lua b/ItemRack/ItemRack.lua index d33e8e8..cf720fa 100644 --- a/ItemRack/ItemRack.lua +++ b/ItemRack/ItemRack.lua @@ -938,7 +938,7 @@ end function ItemRack.IsSoulbound(bag,slot) ItemRackTooltip:SetBagItem(bag,slot) - for i=2,5 do + for i=2,6 do local text = _G["ItemRackTooltipTextLeft"..i]:GetText() if text==ITEM_SOULBOUND or text==ITEM_BIND_QUEST or text==ITEM_CONJURED then return 1