【发布时间】:2020-01-07 06:38:18
【问题描述】:
我在让我的机器人检查它是否已经在它被要求加入的频道中时遇到了一点麻烦。
作为一个例子,这是一段代码:
async def _sound(self, ctx:commands.Context):
voice_channel = None
if ctx.author.voice != None:
voice_channel = ctx.author.voice.channel
if voice_channel != None:
vc = await voice_channel.connect()
vc.play(discord.FFmpegPCMAudio('sound.mp3'))
await asyncio.sleep(5)
await vc.disconnect()
我面临的问题是,如果我在机器人仍在语音通道中时使用命令 >sound,我会收到一条错误消息,指出机器人已经在通道中。我尝试比较客户端通道和用户通道,如果它们相同,请断开连接然后重新连接以避免错误,但我无法正确处理。这是我尝试过但没有奏效的方法:
voice_client = ctx.voice_client
if voice_client.channel.id == voice_channel.id:
await voice_channel.disconnect
vc = await voice_channel.connect()
vc.play(discord.FFmpegPCMAudio('sound.mp3'))
asyncio.sleep(4)
await vc.disconnect()
【问题讨论】:
标签: discord discord.py discord.py-rewrite