diff --git a/disco/types/guild.py b/disco/types/guild.py index 2206547..5048535 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -49,6 +49,10 @@ class GuildEmoji(Emoji): managed = Field(bool) roles = ListField(snowflake) + @property + def url(self): + return 'https://discordapp.com/api/emojis/{}.png'.format(self.id) + @cached_property def guild(self): return self.client.state.guilds.get(self.guild_id)