Reputation: 13
I've looked around and I haven't seen a answer yet so thought I would ask. I've tried some code but it hasn't worked yet. This is what I have tried so far...
@client.event
async def on_reaction_add():
if reaction.emoji == "😆":
await remove.reaction()
Upvotes: 1
Views: 286
Reputation: 15689
You were really close! It's reaction.remove
@client.event
async def on_reaction_add():
if reaction.emoji == "😆":
await reaction.remove()
Upvotes: 1