diff --git a/core.lua b/core.lua index fc5b8b2..1b3e027 100644 --- a/core.lua +++ b/core.lua @@ -1,4 +1,4 @@ -AuxVersion = '2.4.30' +AuxVersion = '2.4.31' Aux = { blizzard_ui_shown = false, diff --git a/scan.lua b/scan.lua index a6c3ece..e2406cd 100644 --- a/scan.lua +++ b/scan.lua @@ -80,7 +80,7 @@ function wait_for_results(k) last_update = GetTime() end) listener:start() - Aux.control.as_soon_as(function() return last_update and GetTime() - last_update > 5 or owner_data_complete end, function() + Aux.control.as_soon_as(function() return owner_data_complete or last_update and GetTime() - last_update > 5 end, function() listener:stop() ok = true end)