Browse Source

Fix reaction_roles example logic

pull/6188/head
Byambadalai Sumiya 4 years ago
committed by GitHub
parent
commit
35db712c16
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      examples/reaction_roles.py

2
examples/reaction_roles.py

@ -44,7 +44,7 @@ class RoleReactClient(discord.Client):
async def on_raw_reaction_remove(self, payload): async def on_raw_reaction_remove(self, payload):
"""Removes a role based on a reaction emoji.""" """Removes a role based on a reaction emoji."""
# Make sure that the message the user is reacting to is the one we care about # 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 return
try: try:

Loading…
Cancel
Save