Browse Source

Add Role.mention property

pull/190/head
Rapptz 9 years ago
parent
commit
abb955fdaa
  1. 5
      discord/role.py

5
discord/role.py

@ -96,3 +96,8 @@ class Role(Hashable):
def created_at(self):
"""Returns the role's creation time in UTC."""
return snowflake_time(self.id)
@property
def mention(self):
"""Returns a string that allows you to mention a role."""
return '<@&{}>'.format(self.id)

Loading…
Cancel
Save