greenbigfrog/discordtipbot

Round amount per user in soak and rain

Closed this issue · 2 comments

Would converting the value to a BigDecimal be enough to fix this? It seems to handle formatting itself already.

So this:
amount_each = amount / targets.size

Would go to this:
amount_each = BigDecimal.new(amount / targets.size)

and after that round it. Look at def amount