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:
parent
b884f1af4a
commit
63e92f8fab
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user