Ensure a selection is made on entering song select if no selection is current

This commit is contained in:
Dean Herbert
2017-12-24 17:02:46 +09:00
parent a04ebd0595
commit 482e10966c
3 changed files with 4 additions and 5 deletions

View File

@ -423,7 +423,7 @@ namespace osu.Game.Screens.Select
private void carouselBeatmapsLoaded()
{
if (Beatmap.Value.BeatmapSetInfo?.DeletePending == false)
if (!Beatmap.IsDefault && Beatmap.Value.BeatmapSetInfo?.DeletePending == false)
Carousel.SelectBeatmap(Beatmap.Value.BeatmapInfo);
else
Carousel.SelectNextRandom();