Browse Source

feature - add url property to GuildEmoji

pull/11/head
Andrei 8 years ago
parent
commit
b41bcebef9
  1. 4
      disco/types/guild.py

4
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)

Loading…
Cancel
Save