From cbc4a388c56981cd418f918413a618cee715fcfe Mon Sep 17 00:00:00 2001 From: Spit <19otari98@gmail.com> Date: Mon, 14 Jul 2025 08:09:53 +0300 Subject: [PATCH] fix auction sell item error --- Core/Tooltip.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/Tooltip.lua b/Core/Tooltip.lua index 2a83cfb..0da4834 100644 --- a/Core/Tooltip.lua +++ b/Core/Tooltip.lua @@ -293,8 +293,7 @@ local function HookTooltip(tooltip) insideHook = true original_SetAuctionSellItem(self) insideHook = false - local _, _, id = strfind(GetAuctionSellItemLink() or "", "item:(%d+)") - self.itemID = tonumber(id) + self.itemID = tonumber(GetItemIDByName(GetAuctionSellItemInfo())) ExtendTooltip(self) end