Skip to content

Commit

Permalink
Change this before Simpy sees it >.>
Browse files Browse the repository at this point in the history
  • Loading branch information
Merathilis committed Apr 13, 2024
1 parent 930ae1f commit 26e5a92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ElvUI/Core/Modules/Skins/Skins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1291,10 +1291,10 @@ end

function S.ReplaceIconString(self, text)
if not text then text = self:GetText() end
if not text or text == "" then return end
if not text or text == '' then return end

local newText, count = gsub(text, "|T([^:]-):[%d+:]+|t", "|T%1:14:14:0:0:64:64:5:59:5:59|t")
if count > 0 then self:SetFormattedText("%s", newText) end
local newText, count = gsub(text, '|T([^:]-):[%d+:]+|t', '|T%1:14:14:0:0:64:64:5:59:5:59|t')
if count > 0 then self:SetFormattedText('%s', newText) end
end

function S:HandleIcon(icon, backdrop)
Expand Down

0 comments on commit 26e5a92

Please sign in to comment.