aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-03-01 15:00:56 +0000
committerGravatar jesopo2019-03-01 15:00:56 +0000
commit1e9772e578b7944a0204df68ca9e244093d20d36 (patch)
treee03e6ed0ce69649f23635a7d261bd5ea3676ec38 /modules
parentspecifically handle HTTPWrongContentTypeException in title.py (diff)
signature
Actually take coins when the house wins (coins)
Diffstat (limited to 'modules')
-rw-r--r--modules/coins.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/coins.py b/modules/coins.py
index 13b3ef15..1c6e877b 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -341,6 +341,7 @@ class Module(ModuleManager.BaseModule):
event["stdout"].write("Roulette spin lands on 0, "
"the house wins, %s loses %s" % (
event["user"].nickname, bet_amount_total))
+ self._take(event["server"], event["user"], bet_amount_total)
return
colour = "red" if choice in RED else "black"