mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Fix initial beatmap selection potentially being incorrect
This commit is contained in:
@ -160,13 +160,8 @@ namespace osu.Game.Screens.Select
|
||||
|
||||
public void SelectBeatmap(BeatmapInfo beatmap)
|
||||
{
|
||||
if (beatmap == null || beatmap.Hidden)
|
||||
{
|
||||
SelectNext();
|
||||
if (beatmap?.Hidden != false)
|
||||
return;
|
||||
}
|
||||
|
||||
if (beatmap == SelectedBeatmap) return;
|
||||
|
||||
foreach (CarouselBeatmapSet group in beatmapSets)
|
||||
{
|
||||
|
Reference in New Issue
Block a user