【发布时间】:2021-08-08 06:04:10
【问题描述】:
错误:
discord.ext.commands.errors.CommandInvokeError:命令引发异常:AttributeError:“VoiceState”对象没有属性“voice_channel”
代码:
from discord.ext import commands
import random
import youtube_dl
@client.command(pass_context=True)
async def join(ctx):
channel = ctx.message.author.voice.voice_channel
await client.join_voice_channel(channel)```
【问题讨论】: