如何让discord bot能够多次播放youtube音频(discord.py)

时间:2018-06-10 06:05:53

标签: python discord discord.py

我试图让我的机器人不止一次播放音乐(在曲目结束后),但是现在它只能播放一次然后停止播放。

@bot.command(pass_context=True)
async def play(ctx, url):
    author = ctx.message.author
    voice_channel = author.voice_channel
    vc = await bot.join_voice_channel(voice_channel)
    player = await vc.create_ytdl_player(url)
    player.start()

0 个答案:

没有答案