@@ -86,17 +86,17 @@ local function OnEvent(self)
86
86
elseif textFormat == ' PERCENT' then
87
87
displayString = format (' %s: %d%% [%s]' , name , percent , standing )
88
88
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 )
90
90
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 )
92
92
elseif textFormat == ' CUR' then
93
93
displayString = format (' %s: %s [%s]' , name , E :ShortValue (current ), standing )
94
94
elseif textFormat == ' REM' then
95
95
displayString = format (' %s: %s [%s]' , name , E :ShortValue (maximum - current ), standing )
96
96
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 )
98
98
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 )
100
100
end
101
101
end
102
102
0 commit comments