From 523547e055b4abcb6d0ce2d7f7c1590c82238075 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 19 Feb 2020 15:39:11 +0000 Subject: [PATCH] duck chance should be 5%, not 50% --- modules/ducks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)