mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-04-19 15:36:02 +00:00
[commands] Change EmojiConverter to use Client.get_emoji
This commit is contained in:
parent
1c640ad72b
commit
0bc5f276a7
@ -726,11 +726,7 @@ class EmojiConverter(IDConverter[discord.Emoji]):
|
||||
emoji_id = int(match.group(1))
|
||||
|
||||
# Try to look up emoji by id.
|
||||
if guild:
|
||||
result = discord.utils.get(guild.emojis, id=emoji_id)
|
||||
|
||||
if result is None:
|
||||
result = discord.utils.get(bot.emojis, id=emoji_id)
|
||||
result = bot.get_emoji(emoji_id)
|
||||
|
||||
if result is None:
|
||||
raise EmojiNotFound(argument)
|
||||
|
Loading…
x
Reference in New Issue
Block a user