mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-21 00:07:51 +00:00
Rename Reaction.custom_emoji to Reaction.is_custom_emoji
This legacy attribute was apparently never changed to be consistent with the rest of the library
This commit is contained in:
parent
04788d0a06
commit
9181bf046b
@ -73,8 +73,7 @@ class Reaction:
|
||||
self.count = data.get('count', 1)
|
||||
self.me = data.get('me')
|
||||
|
||||
@property
|
||||
def custom_emoji(self):
|
||||
def is_custom_emoji(self):
|
||||
""":class:`bool`: If this is a custom emoji."""
|
||||
return not isinstance(self.emoji, str)
|
||||
|
||||
@ -190,7 +189,7 @@ class Reaction:
|
||||
if the member has left the guild.
|
||||
"""
|
||||
|
||||
if self.custom_emoji:
|
||||
if not isinstance(self.emoji, str):
|
||||
emoji = f'{self.emoji.name}:{self.emoji.id}'
|
||||
else:
|
||||
emoji = self.emoji
|
||||
|
Loading…
x
Reference in New Issue
Block a user