Adjust random voice channel connection probability for improved distribution

This commit is contained in:
Edgar P. Burkhart 2025-03-28 22:27:22 +01:00
parent b2c1996b64
commit b1bcb44dac
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -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,