我已使连接正常工作,但是当尝试断开机器人连接时,它将打印出它已断开连接,并且可以让他们聊天且没有错误。这是代码:
@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')
在此先感谢您的帮助。