From 01bc4c7df5181c6513a83fb7de39696afdef9099 Mon Sep 17 00:00:00 2001 From: andrew6180 <16847730+andrew6180@users.noreply.github.com> Date: Tue, 25 Jul 2023 17:15:51 -0700 Subject: [PATCH] Modues/Nameplates: fix incorrect atlas name --- ElvUI/Modules/Nameplates/Elements/PvP.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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