diff options
| author | 2020-02-19 15:39:11 +0000 | |
|---|---|---|
| committer | 2020-02-19 15:39:11 +0000 | |
| commit | 523547e055b4abcb6d0ce2d7f7c1590c82238075 (patch) | |
| tree | 4582efc32a3e14445d26016060fe77672c839363 | |
| parent | include nickname in !redeemcoin success output (diff) | |
| signature | ||
duck chance should be 5%, not 50%
| -rw-r--r-- | modules/ducks.py | 2 |
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) |
