From f3ae56a496e416e12e0aa61b003fde53c2e83ee0 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sun, 9 Apr 2017 22:09:34 -0700 Subject: [PATCH] Fix role mentions --- disco/types/guild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/types/guild.py b/disco/types/guild.py index f93a88f..600ddb0 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -102,7 +102,7 @@ class Role(SlottedModel): @property def mention(self): - return '<@{}>'.format(self.id) + return '<@&{}>'.format(self.id) @cached_property def guild(self):