aboutsummaryrefslogtreecommitdiff
path: root/discord/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/user.py')
-rw-r--r--discord/user.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/discord/user.py b/discord/user.py
index c05d9aa1..9dc0ded7 100644
--- a/discord/user.py
+++ b/discord/user.py
@@ -135,3 +135,19 @@ class User:
"""
return getattr(self, 'nick', None) or self.name
+ def mentioned_in(self, message):
+ """Checks if the user is mentioned in the specified message.
+
+ Parameters
+ -----------
+ message : :class:`Message`
+ The message to check if you're mentioned in.
+ """
+
+ if message.mention_everyone:
+ return True
+
+ if self in message.mentions:
+ return True
+
+ return False