duck chance should be 5%, not 50%
This commit is contained in:
parent
53057576ab
commit
523547e055
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue