diff --git a/osu.Game/Online/Rooms/ItemAttemptsCount.cs b/osu.Game/Online/Rooms/ItemAttemptsCount.cs index 17b7f093f4..9ea2235500 100644 --- a/osu.Game/Online/Rooms/ItemAttemptsCount.cs +++ b/osu.Game/Online/Rooms/ItemAttemptsCount.cs @@ -25,7 +25,7 @@ namespace osu.Game.Online.Rooms /// /// Whether the user has a passing score on the playlist item. /// - [JsonProperty("completed")] - public bool Completed { get; set; } + [JsonProperty("passed")] + public bool Passed { get; set; } } } diff --git a/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs b/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs index 47219e42cb..9834598ac0 100644 --- a/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs +++ b/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsRoomSubScreen.cs @@ -533,7 +533,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists foreach (var item in room.UserScore.PlaylistItemAttempts) { - if (item.Completed) + if (item.Passed) drawablePlaylist.Items.Single(i => i.ID == item.PlaylistItemID).MarkCompleted(); } }