discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Context' object has no attribute 'voice
я думаю проблема в следующей @client.command (отключение бота)
в заранее спасибо за любую помощь! А также не сердитесь строго за мои нелепые ошибки, я полный новичок в этой сфере...
#Подключение бота к голосовому
@client.command()
async def connect(ctx):
if(ctx.author.voice):
channel = ctx.message.author.voice.channel
await channel.connect()
await ctx.send("Подключён")
else:
await ctx.send("Что-то пошло не так!")
#Отключение бота от голосового
@client.command()
async def disconnect(ctx):
if(ctx.voice.client):
await ctx.guild.voice_client.disconnect()
await ctx.send("Отключён")
else:
await ctx.send("Что-то пошло не так!")