From e6651433d6c18f8bf0b83b9c1f2a027960092186 Mon Sep 17 00:00:00 2001 From: andrew6180 <16847730+andrew6180@users.noreply.github.com> Date: Thu, 9 Oct 2025 10:33:03 -0700 Subject: [PATCH] fix nonexistant global BASE_MOVEMENT_SPEED. Fixes #72 --- ElvUI/Core/Tags.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElvUI/Core/Tags.lua b/ElvUI/Core/Tags.lua index e869b33..3db695b 100644 --- a/ElvUI/Core/Tags.lua +++ b/ElvUI/Core/Tags.lua @@ -960,7 +960,7 @@ end do local speedText = _G.SPEED - local baseSpeed = _G.BASE_MOVEMENT_SPEED + local baseSpeed = 7 E:AddTag('speed:percent', 0.1, function(unit) local currentSpeedInYards = GetUnitSpeed(unit) local currentSpeedInPercent = (currentSpeedInYards / baseSpeed) * 100