diff options
Diffstat (limited to 'discord/emoji.py')
| -rw-r--r-- | discord/emoji.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/discord/emoji.py b/discord/emoji.py index fcd8adcb..5feb1c90 100644 --- a/discord/emoji.py +++ b/discord/emoji.py @@ -154,7 +154,10 @@ class Emoji(_EmojiTag): return self._state._get_guild(self.guild_id) def is_usable(self): - """:class:`bool`: Whether the bot can use this emoji.""" + """:class:`bool`: Whether the bot can use this emoji. + + .. versionadded:: 1.3 + """ if not self.available: return False if not self._roles: |