From b4a680323649fa506eba3223dda2d77854d90e95 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 29 May 2025 00:44:40 +0900 Subject: [PATCH] SongSelectV2: Select random instead of fixed item when recovering from no selection --- osu.Game/Screens/SelectV2/SongSelect.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game/Screens/SelectV2/SongSelect.cs b/osu.Game/Screens/SelectV2/SongSelect.cs index 90bec2726f..54ebc2b16e 100644 --- a/osu.Game/Screens/SelectV2/SongSelect.cs +++ b/osu.Game/Screens/SelectV2/SongSelect.cs @@ -580,8 +580,7 @@ namespace osu.Game.Screens.SelectV2 } if (Beatmap.IsDefault || currentBeatmapNotValid) - // TODO: this should probably use random, not recommended like this. - selectRecommendedBeatmap(carouselItems.Select(i => i.Model).OfType()); + carousel.NextRandom(); } #endregion