Byambadalai Sumiya
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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: |
|
|
|