From b7e14148bb3a52b565eca434c8e0668a81ac28e8 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 3 May 2019 16:07:49 +0100 Subject: [PATCH] Change duck-spawn change to 10% per message after 20 messages --- modules/ducks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ducks.py b/modules/ducks.py index b617929b..1d445984 100644 --- a/modules/ducks.py +++ b/modules/ducks.py @@ -32,7 +32,7 @@ class Module(ModuleManager.BaseModule): min_lines = channel.get_setting("ducks-min-messages", 20) if channel.duck_lines >= min_lines: - show_duck = random.SystemRandom().randint(1, 20) == 1 + show_duck = random.SystemRandom().randint(1, 10) == 1 if show_duck: self._trigger_duck(channel)