Renamed User.GameName to User.CurrentGame

This commit is contained in:
RogueException
2015-12-23 23:27:03 -04:00
parent 186345dc7b
commit fc89714e78

View File

@@ -58,8 +58,8 @@ namespace Discord
public ushort Discriminator { get; private set; }
/// <summary> Gets the unique identifier for this user's current avatar. </summary>
public string AvatarId { get; private set; }
/// <summary> Gets the id for the game this user is currently playing. </summary>
public string GameName { get; private set; }
/// <summary> Gets the name of the game this user is currently playing. </summary>
public string CurrentGame { get; private set; }
/// <summary> Gets the current status for this user. </summary>
public UserStatus Status { get; private set; }
/// <summary> Gets the datetime that this user joined this server. </summary>
@@ -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)
{