File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments