Refactor random voice channel connection logic to use dynamic weights based on member count

This commit is contained in:
Edgar P. Burkhart 2025-03-24 10:50:05 +01:00
parent 3f6e41b0c0
commit f4a16f88a9
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -58,13 +58,12 @@ class VoiceBot:
activity = discord.CustomActivity(status)
await self.bot.change_presence(activity=activity)
if random.random() < 50 / 100:
weights = [10 * len(vc.members) + 1 for vc in guild.voice_channels]
if random.random() < sum(weights) / 100:
logger.info("Random connect.")
voice_chan = random.choices(
guild.voice_channels,
weights=[
10 * len(vc.members) + 1 for vc in guild.voice_channels
],
weights=weights,
)[0]
await self.connect_voice(voice_chan)
if not voice_chan.status and self.aibot is not None: