From 35db712c16da4a447eb95797606b498e44204597 Mon Sep 17 00:00:00 2001 From: Byambadalai Sumiya Date: Tue, 22 Dec 2020 15:05:41 +0800 Subject: [PATCH] Fix reaction_roles example logic --- examples/reaction_roles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/reaction_roles.py b/examples/reaction_roles.py index 1a6685610..b462ed77a 100644 --- a/examples/reaction_roles.py +++ b/examples/reaction_roles.py @@ -44,7 +44,7 @@ class RoleReactClient(discord.Client): async def on_raw_reaction_remove(self, payload): """Removes a role based on a reaction emoji.""" # Make sure that the message the user is reacting to is the one we care about - if payload.message_id == self.role_message_id: + if payload.message_id != self.role_message_id: return try: