From 79840303b55e0adb6dd3dfddd1c5cb20947d16ff Mon Sep 17 00:00:00 2001 From: Anch Date: Sun, 16 Oct 2022 00:05:37 +1300 Subject: [PATCH] nav button bug fix fixed nav buttons not showing on rare occasion --- AtlasLoot/Core/AtlasLoot.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua index d6f5456..b380df2 100644 --- a/AtlasLoot/Core/AtlasLoot.lua +++ b/AtlasLoot/Core/AtlasLoot.lua @@ -805,7 +805,7 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum) tablenum = AtlasLootItemsFrame.refreshOri[3]; end - if AtlasLootItemsFrame.refreshOri and tablenum ~= #_G[AtlasLootItemsFrame.refreshOri[2]][AtlasLootItemsFrame.refreshOri[1]] and dataSource_backup ~= "AtlasLoot_TokenData" then + if AtlasLootItemsFrame.refresh and tablenum ~= #_G[AtlasLootItemsFrame.refresh[2]][AtlasLootItemsFrame.refresh[1]] and dataSource_backup ~= "AtlasLoot_TokenData" then _G["AtlasLootItemsFrame_NEXT"]:Show(); _G["AtlasLootItemsFrame_NEXT"].tablenum = tablenum + 1; _G["AtlasLootItemsFrame_NEXT"].tablebase = tablebase;