Skip to content

Commit

Permalink
fix this
Browse files Browse the repository at this point in the history
  • Loading branch information
kodewdle committed Jan 2, 2025
1 parent d941a5e commit a3a56dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ElvUI/Mainline/Modules/DataTexts/DungeonScore.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ local function OnEnter()
local color = GetDungeonScoreRarityColor(score) or HIGHLIGHT_FONT_COLOR

local classColor = E:ClassColor(E.myclass)
DT.tooltip:AddLine(format('|c%s%s|r', classColor.colorStr, E.myname), E.myLocalizedClass, 1, 1, 1, true)
DT.tooltip:AddLine(format('|c%s%s|r', classColor.colorStr, E.myname), 1, 1, 1, true)
DT.tooltip:AddLine(E.myLocalizedClass, 1, 1, 1, true)
DT.tooltip:AddLine(format('%s|c%s%s|r', DUNGEON_SCORE_LINK_RATING, E:RGBToHex(color.r, color.g, color.b, 'ff'), score))
DT.tooltip:AddLine(format('%s|c%s%s|r', DUNGEON_SCORE_LINK_RATING, E:RGBToHex(color.r, color.g, color.b, 'ff'), score), nil, nil, nil, true)

local summary = GetPlayerMythicPlusRatingSummary('player')
if summary and summary.runs then
Expand Down

0 comments on commit a3a56dc

Please sign in to comment.