From e754569bad58154ca989509be20592fb68a16e08 Mon Sep 17 00:00:00 2001 From: Thorsten Date: Mon, 25 Apr 2022 13:19:44 +0200 Subject: [PATCH] decrease sickness --- distbot/plugins/fun.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distbot/plugins/fun.py b/distbot/plugins/fun.py index e3db542..2575121 100644 --- a/distbot/plugins/fun.py +++ b/distbot/plugins/fun.py @@ -189,7 +189,7 @@ class Sick(Worker): description = "omg a computer virus" def parse_body(self, msg): - if random.randint(0, 100) > 90: + if random.randint(0, 1000) > 900: time.sleep(random.randint(1, 5)) return Action(msg=random.choice(["/me sneezes", "*cough*"])) -- 2.39.2