1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 15:22:55 +08:00

Merge pull request #1629 from MattiaPette/random-song-fix

Random song when entering the select screen without a beatmap selected
This commit is contained in:
Dean Herbert 2017-11-29 21:08:16 +09:00 committed by GitHub
commit dddd432dc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,7 +211,7 @@ namespace osu.Game.Screens.Select
if (Beatmap.Value.BeatmapSetInfo?.DeletePending == false)
carousel.SelectBeatmap(Beatmap.Value.BeatmapInfo, false);
else
carousel.SelectNext();
carousel.SelectNextRandom();
}
private void carouselRaisedStart(InputState state = null)