Skip to content

Commit

Permalink
Breakdown substituted gems
Browse files Browse the repository at this point in the history
  • Loading branch information
raethkcj committed Aug 25, 2024
1 parent ae4b71a commit a37484b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RatingBuster.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2055,9 +2055,9 @@ function RatingBuster:ProcessLine(text, link, color, statModContext)
return cacheText
end
elseif EmptySocketLookup[text] and db.profile[EmptySocketLookup[text]].gemText then -- Replace empty sockets with gem text
text = db.profile[EmptySocketLookup[text]].gemText
local gemText = db.profile[EmptySocketLookup[text]].gemText
text = RatingBuster:ProcessLine(gemText, link, color, statModContext)
cache[profileSpec][cacheID] = text
-- SetText
return text
elseif text:find("%d") then -- do nothing if we don't find a number
-- Temporarily replace exclusions
Expand Down

0 comments on commit a37484b

Please sign in to comment.