diff --git a/ElvUI/Modules/Nameplates/Elements/PvP.lua b/ElvUI/Modules/Nameplates/Elements/PvP.lua index 844bd8d..3733a48 100644 --- a/ElvUI/Modules/Nameplates/Elements/PvP.lua +++ b/ElvUI/Modules/Nameplates/Elements/PvP.lua @@ -4,7 +4,7 @@ local NP = E:GetModule('NamePlates') local strlower = strlower function NP:PvPIndicator_PostUpdate(_, status) - if status and status ~= 'FFA' and (not self.Badge or not self.Badge:IsShown()) then + if status and strlower(status) ~= 'ffa' and (not self.Badge or not self.Badge:IsShown()) then self:SetAtlas('bfa-landingbutton-'..strlower(status)..'-up') self:SetTexCoord(0, 1, 0, 1) end