From dafbabe0b833bd2ae2b152c702a3faa1e8eef17c Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Sat, 15 Jun 2024 17:45:54 +0200 Subject: [PATCH] Augmentation proba connection vocal (5%) --- botbotbot/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botbotbot/__main__.py b/botbotbot/__main__.py index c553003..c5ec41c 100644 --- a/botbotbot/__main__.py +++ b/botbotbot/__main__.py @@ -199,7 +199,7 @@ async def voice_random_nicks(member, before, after): if ( before.channel is None and after.channel is not None - and random.random() < 1 / 100 + and random.random() < 5 / 100 and bot not in after.channel.members ): await asyncio.sleep(random.randrange(60))