无法获取discord.py僵尸程序以断开与语音聊天的连接

时间:2020-04-22 09:47:08

标签: discord.py discord.py-rewrite

我已使连接正常工作,但是当尝试断开机器人连接时,它将打印出它已断开连接,并且可以让他们聊天且没有错误。这是代码:

@client.command(pass_context=True)
async def join(ctx):
    channel = ctx.message.author.voice.channel
    await channel.connect()
    print('connected')

@client.command(pass_context=True)
async def disconnect(ctx):
    server = ctx.message.guild.voice_client
    await server.disconnect()
    print ('disconnected')

在此先感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您可能要尝试使用server.disconnect(force=True)documentation),因为有时如果不强制断开连接,则可能会阻止断开连接。