我的机器人播放第一首歌曲,然后停止响应其他命令播放歌曲。
这是我的代码:
@wb.command(pass_context=True)
async def play(ctx, url):
author = ctx.message.author
channel = author.voice_channel
vc = await wb.join_voice_channel(channel)
player = await vc.create_ytdl_player(url)
player.start()
@wb.command(pass_context=True)
async def leavevoice(ctx):
for x in wb.voice_clients:
if(x.server == ctx.message.server):
return await x.disconnect()
我没有得到任何错误代码,它只是对我的命令没有反应。