aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2020-02-19 15:39:11 +0000
committerGravatar jesopo2020-02-19 15:39:11 +0000
commit523547e055b4abcb6d0ce2d7f7c1590c82238075 (patch)
tree4582efc32a3e14445d26016060fe77672c839363
parentinclude nickname in !redeemcoin success output (diff)
signature
duck chance should be 5%, not 50%
-rw-r--r--modules/ducks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ducks.py b/modules/ducks.py
index 9563409c..eb6d7ef4 100644
--- a/modules/ducks.py
+++ b/modules/ducks.py
@@ -39,7 +39,7 @@ class Module(ModuleManager.BaseModule):
DEFAULT_MIN_MESSAGES)
if channel.duck_lines >= min_lines:
- show_duck = random.SystemRandom().randint(1, 2) == 1
+ show_duck = random.SystemRandom().randint(1, 20) == 1
if show_duck:
self._trigger_duck(channel)