diff options
| author | 2018-10-13 00:44:04 +0100 | |
|---|---|---|
| committer | 2018-10-13 00:44:04 +0100 | |
| commit | 00e5890a928cda948a275f519bc962535b62e883 (patch) | |
| tree | 9a1f8a4736e0ab164550ad42a8066373c8ec66b5 | |
| parent | Give coins lost to the house in roulette to the Bank (diff) | |
| signature | ||
Fixed incorrect comment about what counts as high/low for roulette in
modules/coins.py
| -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 c8e1adab..80dfeb5c 100644 --- a/modules/coins.py +++ b/modules/coins.py @@ -329,7 +329,7 @@ class Module(ModuleManager.BaseModule): event["user"].nickname) return - # black, red, odds, evens, high (1-18), low (19-36) + # black, red, odds, evens, low (1-18), high (19-36) # 1dozen (1-12), 2dozen (13-24), 3dozen (25-36) # 1column (1,4..34), 2column (2,5..35), 3column (3,6..36) choice = secrets.randbelow(37) |
