【发布时间】:2021-08-04 03:04:54
【问题描述】:
我试图让我的机器人对自己的嵌入做出反应,我已经写出了代码,但机器人不会对表情符号做出反应。我怎样才能解决这个问题?谢谢
@bot.command()
async def emoji(ctx):
embed=discord.Embed(title="Test", description="Test", color=0x00FFFF)
await ctx.send(embed=embed)
msg = await bot.send_message(ctx.message.channel,embed=embed)
await bot.add_reaction(msg, "????")
【问题讨论】:
标签: python discord discord.py