Add shuffle listener to VoiceBot for enhanced voice state management

This commit is contained in:
Edgar P. Burkhart 2025-03-23 13:06:45 +01:00
parent a811d870f3
commit a51483f9da
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -28,6 +28,7 @@ class VoiceBot:
def init_events(self) -> None:
self.bot.add_listener(self.on_voice_state_update, "on_voice_state_update")
self.bot.add_listener(self.shuffle, "on_voice_state_update")
self.bot.add_listener(self.random_connect, "on_ready")
self.bot.add_application_command(
discord.SlashCommand(
@ -145,6 +146,17 @@ class VoiceBot:
):
await self.connect_voice(after.channel)
if self.shf and before.channel is None and random.random() < 5 / 100:
async def shuffle(
self,
member: discord.Member,
before: discord.VoiceState,
after: discord.VoiceState,
) -> None:
if (
self.shf
and before.channel is None
and member != self.bot.user
and random.random() < 5 / 100
):
logger.info(f"Voice shuffle from {member}")
await self.shf.try_shuffle(member.guild)