Quantcast

Probably should fix rare random error

Darth Predator [11-09-16 - 17:23]
Probably should fix rare random error
Filename
ElvUI_SLE/modules/minimap/locationbar.lua
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()