diff --git a/osu.Game/Users/User.cs b/osu.Game/Users/User.cs index ffe18dcfdb..99484d8ef3 100644 --- a/osu.Game/Users/User.cs +++ b/osu.Game/Users/User.cs @@ -24,7 +24,7 @@ public class User public Bindable Status = new Bindable(); [JsonProperty(@"age")] - public int Age; + public int? Age; //public Team Team; diff --git a/osu.Game/Users/UserStatistics.cs b/osu.Game/Users/UserStatistics.cs index 22c5c5cbcc..7e3e5db983 100644 --- a/osu.Game/Users/UserStatistics.cs +++ b/osu.Game/Users/UserStatistics.cs @@ -20,7 +20,7 @@ public class LevelInfo } [JsonProperty(@"pp")] - public decimal PP; + public decimal? PP; [JsonProperty(@"pp_rank")] public int Rank;