commit
f0f0abcd84
1 changed files with 11 additions and 5 deletions
|
@ -171,13 +171,19 @@ class Module(object):
|
|||
event["stdout"].write(
|
||||
"%s flips %s and wins %s coin%s! (new total: %s)" % (
|
||||
event["user"].nickname, side_name, coin_bet_str,
|
||||
"" if coin_bet == 1 else "s", user_coins+coin_bet))
|
||||
"" if coin_bet == 1 else "s",
|
||||
user_coins+coin_bet
|
||||
)
|
||||
)
|
||||
else:
|
||||
event["user"].set_setting("coins", str(user_coins-coin_bet))
|
||||
event["stdout"].write(
|
||||
"%s flips %s and loses %s coin%s! (new total: %s)" % (
|
||||
event["user"].nickname, side_name, coin_bet_str,
|
||||
"" if coin_bet == 1 else "s", user_coins-coin_bet))
|
||||
"" if coin_bet == 1 else "s",
|
||||
user_coins-coin_bet
|
||||
)
|
||||
)
|
||||
|
||||
@utils.hook("received.command.sendcoins", min_args=2, authenticated=True)
|
||||
def send(self, event):
|
||||
|
|
Loading…
Reference in a new issue