1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 13:20:16 +08:00

Rename to passed

This commit is contained in:
Dan Balasescu
2025-04-10 18:44:44 +09:00
Unverified
parent 34180c62eb
commit 3dc8a4c1ed
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ namespace osu.Game.Online.Rooms
/// <summary>
/// Whether the user has a passing score on the playlist item.
/// </summary>
[JsonProperty("completed")]
public bool Completed { get; set; }
[JsonProperty("passed")]
public bool Passed { get; set; }
}
}
@@ -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();
}
}