欢迎消息-Discord.py

时间:2020-10-31 16:46:46

标签: python python-3.x discord.py discord.py-rewrite

我正在编写欢迎消息代码,但是每当我运行机器人并加入成员时,嵌入都不会显示,也不会显示任何错误。我该如何解决?

async def on_member_join(member):
    channel = bot.get_channel(ID)
    embed = discord.Embed(description = f"Welcome {member.mention}", color=0xE74C3C)
    await channel.send(embed=embed)

1 个答案:

答案 0 :(得分:0)

您需要启用意图

intents = discord.Intents().all()
`client = commands.Bot(command_prefix=prefix, intents=intents)