aboutsummaryrefslogtreecommitdiff
path: root/discord/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/user.py')
-rw-r--r--discord/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/user.py b/discord/user.py
index cadf84db..0cde6ea0 100644
--- a/discord/user.py
+++ b/discord/user.py
@@ -120,7 +120,7 @@ class BaseUser:
if they have a guild specific nickname then that
is returned instead.
"""
- return getattr(self, 'nick', None) or self.name
+ return self.name
def mentioned_in(self, message):
"""Checks if the user is mentioned in the specified message.