在我的机器人中,我开始制作音乐机器人。 但是,无论我如何尝试,我的加入命令都无法正常工作。我没有错误。
@commands.command(name="join")
async def join(self, ctx):
channel = ctx.author.voice.channel
voice = get(self.client.voice_clients, guild=ctx.guild)
if voice and voice.is_connected():
await voice.move_to(channel)
else:
voice = await channel.connect()
编辑:我找到了解决方案。我没有pip install discord.py[voice]