Skip to content

Commit 7af6a3f

Browse files
committed
swap these to /
1 parent 98e97e0 commit 7af6a3f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ElvUI/Core/Modules/DataTexts/Reputation.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,17 @@ local function OnEvent(self)
8686
elseif textFormat == 'PERCENT' then
8787
displayString = format('%s: %d%% [%s]', name, percent, standing)
8888
elseif textFormat == 'CURMAX' then
89-
displayString = format('%s: %s - %s [%s]', name, E:ShortValue(current), E:ShortValue(maximum), standing)
89+
displayString = format('%s: %s / %s [%s]', name, E:ShortValue(current), E:ShortValue(maximum), standing)
9090
elseif textFormat == 'CURPERC' then
91-
displayString = format('%s: %s - %d%% [%s]', name, E:ShortValue(current), percent, standing)
91+
displayString = format('%s: %s / %d%% [%s]', name, E:ShortValue(current), percent, standing)
9292
elseif textFormat == 'CUR' then
9393
displayString = format('%s: %s [%s]', name, E:ShortValue(current), standing)
9494
elseif textFormat == 'REM' then
9595
displayString = format('%s: %s [%s]', name, E:ShortValue(maximum - current), standing)
9696
elseif textFormat == 'CURREM' then
97-
displayString = format('%s: %s - %s [%s]', name, E:ShortValue(current), E:ShortValue(maximum - current), standing)
97+
displayString = format('%s: %s / %s [%s]', name, E:ShortValue(current), E:ShortValue(maximum - current), standing)
9898
elseif textFormat == 'CURPERCREM' then
99-
displayString = format('%s: %s - %d%% (%s) [%s]', name, E:ShortValue(current), percent, E:ShortValue(maximum - current), standing)
99+
displayString = format('%s: %s / %d%% (%s) [%s]', name, E:ShortValue(current), percent, E:ShortValue(maximum - current), standing)
100100
end
101101
end
102102

0 commit comments

Comments
 (0)