Skip to content

Commit 76cb25d

Browse files
committed
fix display of echips & mult
1 parent 65e3b3b commit 76cb25d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lovely.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ payload = '''
2727
elseif eval_type == 'x_chips' then
2828
sound = 'cry_xchip'
2929
amt = amt
30-
text = 'X' .. amt
30+
text = 'X' .. number_format(amt)
3131
colour = G.C.CHIPS
3232
config.type = 'fade'
3333
config.scale = 0.7
3434
elseif eval_type == 'e_chips' then
3535
sound = 'cry_echips'
3636
amt = amt
37-
text = '^' .. amt .. ' ' .. localize('k_chips')
37+
text = '^' .. number_format(amt) .. ' ' .. localize('k_chips')
3838
colour = G.C.DARK_EDITION
3939
config.type = 'fade'
4040
config.scale = 0.7
4141
elseif eval_type == 'e_mult' then
4242
sound = 'cry_emult'
4343
amt = amt
44-
text = '^' .. amt .. ' ' .. localize('k_mult')
44+
text = '^' .. number_format(amt) .. ' ' .. localize('k_mult')
4545
colour = G.C.DARK_EDITION
4646
config.type = 'fade'
4747
config.scale = 0.7

0 commit comments

Comments
 (0)