diff options
| author | 2019-03-21 21:09:53 +0000 | |
|---|---|---|
| committer | 2019-03-21 21:09:53 +0000 | |
| commit | 3f8d5e9f50fe0673f0c8b38fee7fed1c2810973d (patch) | |
| tree | 716b5391c73587227e8b67270e1da78c5c7e9afd | |
| parent | Show coins in "human" form (with commas) in flip wins/losses (diff) | |
| signature | ||
Also human-ify coin bet amounts in a flip
| -rw-r--r-- | modules/coins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/coins.py b/modules/coins.py index 7e5b37bc..f7ae4e30 100644 --- a/modules/coins.py +++ b/modules/coins.py @@ -225,7 +225,7 @@ class Module(ModuleManager.BaseModule): chosen_side = random.SystemRandom().choice(list(SIDES.keys())) win = side_name == chosen_side - coin_bet_str = self._coin_str(coin_bet) + coin_bet_str = self._coin_str_human(coin_bet) if win: new_total = self._give(event["server"], event["user"], coin_bet) event["stdout"].write( |
