From 545d6f4fb82937c3f58322f7ef3c6c0d2d99f355 Mon Sep 17 00:00:00 2001 From: Simpy Date: Sun, 1 Dec 2024 05:23:17 -0500 Subject: [PATCH] missed one --- ElvUI/Core/General/Tags.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElvUI/Core/General/Tags.lua b/ElvUI/Core/General/Tags.lua index c0fc9624d6..be50d4879d 100644 --- a/ElvUI/Core/General/Tags.lua +++ b/ElvUI/Core/General/Tags.lua @@ -348,7 +348,7 @@ for textFormat in pairs(E.GetFormattedTextStyles) do end end, not E.Retail) - E:AddTag(format('classpower:%s:shortvalue', tagFormat), (E.myclass == 'MONK' and 'UNIT_AURA ' or E.myclass == 'DEATHKNIGHT' and 'RUNE_POWER_UPDATE ' or '') .. 'UNIT_POWER_UPDATE UNIT_DISPLAYPOWER', function(unit) + E:AddTag(format('classpower:%s:shortvalue', tagFormat), (E.myclass == 'MONK' and 'UNIT_AURA ' or E.myclass == 'DEATHKNIGHT' and 'RUNE_POWER_UPDATE ' or '') .. 'UNIT_POWER_FREQUENT UNIT_DISPLAYPOWER', function(unit) local min, max = GetClassPower(unit) if min ~= 0 then return E:GetFormattedText(textFormat, min, max, nil, true)