1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 22:22:54 +08:00

Fix status on carousel beatmap set not showing in split difficulty mode

This commit is contained in:
Bartłomiej Dach 2023-09-06 08:25:19 +02:00
parent b884f1af4a
commit 63e92f8fab
No known key found for this signature in database

View File

@ -145,7 +145,8 @@ namespace osu.Game.Screens.Select
return createCarouselSet(new BeatmapSetInfo(new[] { b })
{
ID = b.BeatmapSet!.ID,
OnlineID = b.BeatmapSet!.OnlineID
OnlineID = b.BeatmapSet!.OnlineID,
Status = b.BeatmapSet!.Status,
});
}).OfType<CarouselBeatmapSet>();
@ -431,7 +432,8 @@ namespace osu.Game.Screens.Select
var newSet = createCarouselSet(new BeatmapSetInfo(new[] { beatmap })
{
ID = beatmapSet.ID,
OnlineID = beatmapSet.OnlineID
OnlineID = beatmapSet.OnlineID,
Status = beatmapSet.Status,
});
if (newSet != null)