@client.event
async def on_member_join(member):
guild = member.guild
channel = guild.channel
retStr = str("""```yaml\nПривет!\nДобро пожаловать на наш сервер!\nНадеюсь тебе тут понравится.\nЕсли заблудешься пиши .help,кстати у нас все команды пишутся с .\nудачи тебе```""")
embed = discord.Embed(title="Welcome",colour=discord.Colour.blue())
embed.add_field(name="Привет",value=retStr)
await bot.send_message(channel, embed=embed)
Вот такая ошибка
Ignoring exception in on_member_join
Traceback (most recent call last):
File "C:\Users\x094t\AppData\Local\Programs\Python\Python38-32\lib\site-packages\discord\client.py", line 312, in _run_event
await coro(*args, **kwargs)
File "bot.py", line 27, in on_member_join
channel = guild.channel
AttributeError: 'Guild' object has no attribute 'channel'
что делать?