Discord bot在第一首歌后停止播放音乐[python]

时间:2018-01-30 14:17:06

标签: python bots discord.py

我的机器人播放第一首歌曲,然后停止响应其他命令播放歌曲。

这是我的代码:

    @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()

我没有得到任何错误代码,它只是对我的命令没有反应。

0 个答案:

没有答案