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

Add mention of PlaylistItem.Beatmap being a placeholder in many cases

This commit is contained in:
Dean Herbert
2022-02-22 15:31:08 +09:00
Unverified
parent cde3d9c08b
commit f12044b03e
+4
View File
@@ -62,6 +62,10 @@ namespace osu.Game.Online.Rooms
[JsonProperty("beatmap_id")]
private int onlineBeatmapId => Beatmap.OnlineID;
/// <summary>
/// A beatmap representing this playlist item.
/// In many cases, this will *not* contain any usable information apart from OnlineID.
/// </summary>
[JsonIgnore]
public IBeatmapInfo Beatmap { get; set; } = null!;