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

Fix beatmap checksum being lost

This commit is contained in:
Dan Balasescu
2025-03-14 18:42:43 +09:00
Unverified
parent 2cbf71c592
commit 0608058f5d
+1 -1
View File
@@ -97,7 +97,7 @@ namespace osu.Game.Online.Rooms
}
public PlaylistItem(MultiplayerPlaylistItem item)
: this(new APIBeatmap { OnlineID = item.BeatmapID, StarRating = item.StarRating })
: this(new APIBeatmap { OnlineID = item.BeatmapID, StarRating = item.StarRating, Checksum = item.BeatmapChecksum })
{
ID = item.ID;
OwnerID = item.OwnerID;