From 6d6137ad01c217dfd8f69243723210a0e38b8d83 Mon Sep 17 00:00:00 2001 From: RogueException Date: Wed, 18 May 2016 19:27:04 -0300 Subject: [PATCH] Added Profile.NicknameMention --- src/Discord.Net/Models/Profile.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Discord.Net/Models/Profile.cs b/src/Discord.Net/Models/Profile.cs index ce67e16e0..c3470af4b 100644 --- a/src/Discord.Net/Models/Profile.cs +++ b/src/Discord.Net/Models/Profile.cs @@ -28,7 +28,9 @@ namespace Discord public UserStatus Status => Client.PrivateUser.Status; /// Returns the string used to mention this user. public string Mention => $"<@{Id}>"; - + /// Returns the string used to mention this user. + public string NicknameMention => $"<@!{Id}>"; + /// Gets the email for this user. public string Email { get; private set; } /// Gets if the email for this user has been verified.