Refactor connect_voice_chan method to streamline voice channel connection logic

This commit is contained in:
Edgar P. Burkhart 2025-03-24 17:47:35 +01:00
parent f4a16f88a9
commit b2c1996b64
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -126,11 +126,12 @@ class VoiceBot:
async def connect_voice_chan(
self, channel: discord.VoiceChannel | discord.StageChannel
) -> discord.VoiceClient:
if channel.guild.id in self.vo:
vo = self.vo.get(channel.guild.id, None)
if vo is not None and vo.channel != channel:
await self.disconnect_voice(channel.guild)
vo: discord.VoiceClient = await channel.connect()
self.vo[channel.guild.id] = vo
if vo is None or vo.channel != channel:
vo = await channel.connect()
self.vo[channel.guild.id] = vo
return vo
async def disconnect_voice(self, guild: discord.Guild) -> None: