80 cols!
This commit is contained in:
parent
f8fb422cbd
commit
4a04b1faad
1 changed files with 6 additions and 6 deletions
|
@ -168,16 +168,16 @@ class Module(object):
|
||||||
|
|
||||||
if win:
|
if win:
|
||||||
event["user"].set_setting("coins", str(user_coins+coin_bet))
|
event["user"].set_setting("coins", str(user_coins+coin_bet))
|
||||||
event["stdout"].write("%s flips %s and wins %s coin%s! (new total: %s)" % (
|
event["stdout"].write(
|
||||||
|
"%s flips %s and wins %s coin%s! (new total: %s)" % (
|
||||||
event["user"].nickname, side_name, coin_bet_str,
|
event["user"].nickname, side_name, coin_bet_str,
|
||||||
"" if coin_bet == 1 else "s",
|
"" if coin_bet == 1 else "s", user_coins+coin_bet))
|
||||||
user_coins+coin_bet))
|
|
||||||
else:
|
else:
|
||||||
event["user"].set_setting("coins", str(user_coins-coin_bet))
|
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["stdout"].write(
|
||||||
|
"%s flips %s and loses %s coin%s! (new total: %s)" % (
|
||||||
event["user"].nickname, side_name, coin_bet_str,
|
event["user"].nickname, side_name, coin_bet_str,
|
||||||
"" if coin_bet == 1 else "s",
|
"" if coin_bet == 1 else "s", user_coins-coin_bet))
|
||||||
user_coins-coin_bet))
|
|
||||||
|
|
||||||
@utils.hook("received.command.sendcoins", min_args=2, authenticated=True)
|
@utils.hook("received.command.sendcoins", min_args=2, authenticated=True)
|
||||||
def send(self, event):
|
def send(self, event):
|
||||||
|
|
Loading…
Reference in a new issue