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) {