我正在编写欢迎消息代码,但是每当我运行机器人并加入成员时,嵌入都不会显示,也不会显示任何错误。我该如何解决?
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)
答案 0 :(得分:0)
您需要启用意图
intents = discord.Intents().all()
`client = commands.Bot(command_prefix=prefix, intents=intents)