From fc89714e78028ee75557c88a656b4510369b548e Mon Sep 17 00:00:00 2001 From: RogueException Date: Wed, 23 Dec 2015 23:27:03 -0400 Subject: [PATCH] Renamed User.GameName to User.CurrentGame --- src/Discord.Net/Models/User.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Discord.Net/Models/User.cs b/src/Discord.Net/Models/User.cs index b3912774b..2d70404e7 100644 --- a/src/Discord.Net/Models/User.cs +++ b/src/Discord.Net/Models/User.cs @@ -58,8 +58,8 @@ namespace Discord public ushort Discriminator { get; private set; } /// Gets the unique identifier for this user's current avatar. public string AvatarId { get; private set; } - /// Gets the id for the game this user is currently playing. - public string GameName { get; private set; } + /// Gets the name of the game this user is currently playing. + public string CurrentGame { get; private set; } /// Gets the current status for this user. public UserStatus Status { get; private set; } /// Gets the datetime that this user joined this server. @@ -195,7 +195,7 @@ namespace Discord _lastOnline = DateTime.UtcNow; } - GameName = model.Game?.Name; //Allows null + CurrentGame = model.Game?.Name; //Allows null } internal void Update(MemberVoiceState model) {