Implement random disconnect logic in VoiceBot to enhance connection management and improve voice channel handling

This commit is contained in:
Edgar P. Burkhart 2025-03-23 12:19:21 +01:00
parent 390449ecdb
commit a811d870f3
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -45,9 +45,14 @@ class VoiceBot:
if guild is None:
continue
logger.info("Random connect.")
voice_chan = random.choice(guild.voice_channels)
await self.connect_voice(voice_chan)
if random.random() < 50 / 100:
logger.info("Random connect.")
voice_chan = random.choice(guild.voice_channels)
await self.connect_voice(voice_chan)
else:
logger.info("Random disconnect.")
await self.disconnect_voice(guild)
await asyncio.sleep(3600 * random.random())
async def connect_voice(
@ -94,11 +99,14 @@ class VoiceBot:
async def connect_voice_chan(
self, channel: discord.VoiceChannel | discord.StageChannel
) -> discord.VoiceClient:
for vc in self.bot.voice_clients:
if isinstance(vc, discord.VoiceClient) and vc.guild == channel.guild:
await vc.disconnect()
await self.disconnect_voice(channel.guild)
return await channel.connect()
async def disconnect_voice(self, guild: discord.Guild) -> None:
for vc in self.bot.voice_clients:
if isinstance(vc, discord.VoiceClient) and vc.guild == guild:
await vc.disconnect()
async def join_voice(self, ctx: discord.ApplicationContext) -> None:
if ctx.user.voice:
await ctx.respond(