From 78cd690b87f753a3c58b9f8ffc73765684311d62 Mon Sep 17 00:00:00 2001 From: Szyler Date: Sat, 28 Aug 2021 14:53:27 +0200 Subject: [PATCH] Fixed lua error on Page Query --- AtlasLoot/Core/AtlasLoot.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua index e69baaf..3add4f6 100644 --- a/AtlasLoot/Core/AtlasLoot.lua +++ b/AtlasLoot/Core/AtlasLoot.lua @@ -1410,13 +1410,13 @@ function AtlasLoot_QueryLootPage() local now = 0; while i<31 do now = GetTime(); - if now - querytime > 0.03 then + if now - querytime > 0.01 then querytime = GetTime(); button = getglobal("AtlasLootItem_"..i); queryitem = button.itemID; if (queryitem) and (queryitem ~= nil) and (queryitem ~= "") and (queryitem ~= 0) and (string.sub(queryitem, 1, 1) ~= "s") then - GameTooltip:SetHyperlink("item:"..queryitem..":0:0:0:0:0:0:0"); - GameTooltip:SetHyperlink("item:60"..queryitem..":0:0:0:0:0:0:0"); + AtlasLootTooltip:SetHyperlink("item:"..queryitem..":0:0:0:0:0:0:0"); + AtlasLootTooltip:SetHyperlink("item:60"..queryitem..":0:0:0:0:0:0:0"); end i=i+1; end