命令引发异常:属性错误:'Guild'对象没有属性'voice'错误



我建立了一个音乐机器人,但是我犯了一个错误。

我得到的错误就像这样;

discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Guild' object has no attribute 'voice'

命令;

@Bot.command(pass_context=True)
async def play(ctx, url : str):
voiceChannel = discord.utils.get(ctx.guild.voice.channels, ctx.message.author.voice_channel)
voice = discord.utils.get(Bot.voice_clients, guild)
await voiceChannel.connect()
guild =  ctx.guild

试着用这个:

voiceChannel = discord.utils.get(ctx.voice_client,ctx.message.author.voice_channel)

最新更新