From cc8fba2cf6175a95a80bb65d300293d7dcba966b Mon Sep 17 00:00:00 2001 From: Darth Predator Date: Wed, 9 Nov 2016 20:23:21 +0300 Subject: [PATCH] Probably should fix rare random error --- ElvUI_SLE/modules/minimap/locationbar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElvUI_SLE/modules/minimap/locationbar.lua b/ElvUI_SLE/modules/minimap/locationbar.lua index 2b97f21..cafa903 100644 --- a/ElvUI_SLE/modules/minimap/locationbar.lua +++ b/ElvUI_SLE/modules/minimap/locationbar.lua @@ -256,7 +256,7 @@ end function LP:UpdateCoords(elapsed) LP.elapsed = LP.elapsed + elapsed - if LP.elapsed < LP.db.throttle then return end + if LP.elapsed < (LP.db.throttle or 0.2) then return end --Coords if not LP.RestrictedArea then local x, y = CreateCoords() -- 1.7.9.5