Adjust random voice channel connection probability for improved distribution
This commit is contained in:
parent
b2c1996b64
commit
b1bcb44dac
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class VoiceBot:
|
|||
await self.bot.change_presence(activity=activity)
|
||||
|
||||
weights = [10 * len(vc.members) + 1 for vc in guild.voice_channels]
|
||||
if random.random() < sum(weights) / 100:
|
||||
if random.random() < sum(weights) / 400:
|
||||
logger.info("Random connect.")
|
||||
voice_chan = random.choices(
|
||||
guild.voice_channels,
|
||||
|
|
Loading…
Add table
Reference in a new issue