Шалом
Пытаюсь написать функцию для присоединения бот в голосовой чат Discord, но выбивает ошибку...
Не могу понять в чём проблема.
@bot.command()
async def join(ctx):
global voice
channel = ctx.message.author.voice.channel
voice = get(bot.voice_clients, guild=ctx.guild)
if voice and voice.is_connected():
await voice.move_to(channel)
else:
voice = await connect.channel()
await ctx.send(f'Бот присоеденился к каналу: {channel}')
Ошибка:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: type object 'Connect' has no attribute 'channel'