diff --git a/osu.Game/Models/RealmUser.cs b/osu.Game/Models/RealmUser.cs index 8b050e8a93..154ece502f 100644 --- a/osu.Game/Models/RealmUser.cs +++ b/osu.Game/Models/RealmUser.cs @@ -11,5 +11,7 @@ namespace osu.Game.Models public int OnlineID { get; set; } = 1; public string Username { get; set; } + + public bool IsBot => false; } } diff --git a/osu.Game/Online/API/Requests/Responses/APIUser.cs b/osu.Game/Online/API/Requests/Responses/APIUser.cs index 58f19ceaad..49edfd036b 100644 --- a/osu.Game/Online/API/Requests/Responses/APIUser.cs +++ b/osu.Game/Online/API/Requests/Responses/APIUser.cs @@ -79,7 +79,7 @@ namespace osu.Game.Online.API.Requests.Responses public bool IsBNG; [JsonProperty(@"is_bot")] - public bool IsBot; + public bool IsBot { get; set; } [JsonProperty(@"is_active")] public bool Active; diff --git a/osu.Game/Users/IUser.cs b/osu.Game/Users/IUser.cs index 34a59fa214..89831e6c4d 100644 --- a/osu.Game/Users/IUser.cs +++ b/osu.Game/Users/IUser.cs @@ -8,5 +8,7 @@ namespace osu.Game.Users public interface IUser : IHasOnlineID { string Username { get; set; } + + bool IsBot { get; } } }