我试图让我的机器人不止一次播放音乐(在曲目结束后),但是现在它只能播放一次然后停止播放。
@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()