event["server"]
-> server
in modules/coins.py
This commit is contained in:
parent
54ba3c888c
commit
be95fb8a6d
1 changed files with 1 additions and 1 deletions
|
@ -555,6 +555,6 @@ class Module(ModuleManager.BaseModule):
|
||||||
self._take_from_pool(server, winnings)
|
self._take_from_pool(server, winnings)
|
||||||
new_coins = coins+winnings
|
new_coins = coins+winnings
|
||||||
user.set_setting("coins", str(new_coins))
|
user.set_setting("coins", str(new_coins))
|
||||||
event["server"].set_setting("lottery-winner", user.nickname)
|
server.set_setting("lottery-winner", user.nickname)
|
||||||
user.send_notice("You won %s in the lottery! you now have %s coins"
|
user.send_notice("You won %s in the lottery! you now have %s coins"
|
||||||
% ("{0:.2f}".format(winnings), "{0:.2f}".format(new_coins)))
|
% ("{0:.2f}".format(winnings), "{0:.2f}".format(new_coins)))
|
||||||
|
|
Loading…
Reference in a new issue