From f602bdeb2f42fd3449f08dcf0759854030f57a2a Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 28 May 2025 16:48:41 +0900 Subject: [PATCH] Set random beatmap on entering song select --- osu.Game/Screens/SelectV2/SongSelect.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/osu.Game/Screens/SelectV2/SongSelect.cs b/osu.Game/Screens/SelectV2/SongSelect.cs index 54855ad049..cbfa5f1251 100644 --- a/osu.Game/Screens/SelectV2/SongSelect.cs +++ b/osu.Game/Screens/SelectV2/SongSelect.cs @@ -425,7 +425,10 @@ namespace osu.Game.Screens.SelectV2 // force reselection if entering song select with a protected beatmap if (Beatmap.Value.BeatmapInfo.BeatmapSet!.Protected) - Beatmap.SetDefault(); + { + if (!carousel.NextRandom()) + Beatmap.SetDefault(); + } else updateSelection(); }