我有以下基本的python discord机器人代码:
@bot.command()
async def replyTest(ctx):
await ctx.send('Reply to this message')
def check(m):
return m
msg = await bot.wait_for("message", check=check)
print(msg)
是否有一种方法可以仅在m
是回复类型消息时返回m
?
我有以下基本的python discord机器人代码:
@bot.command()
async def replyTest(ctx):
await ctx.send('Reply to this message')
def check(m):
return m
msg = await bot.wait_for("message", check=check)
print(msg)
是否有一种方法可以仅在m
是回复类型消息时返回m
?
1条答案
按热度按时间tv6aics11#
您可以简单地检查消息是否有引用。
此外,如果要检查引用是否指向消息:
参考文献:
message.reference
Reference.message_id