I have the following basic python discord bot code:
@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)
Is there a way to return m only when m is a reply type message?