From b41bcebef94f565641cbe9030666d91cc964c7ab Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 24 Nov 2016 07:56:54 -0600 Subject: [PATCH] feature - add url property to GuildEmoji --- disco/types/guild.py | 4 ++++ 1 file changed, 4 insertions(+) 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)