1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-06 20:04:32 +08:00

Prevent random selection from selecting hidden beatmaps

This commit is contained in:
Bartłomiej Dach
2025-05-28 12:22:09 +02:00
Unverified
parent dca839211c
commit db7c6fa850
+1 -1
View File
@@ -564,7 +564,7 @@ namespace osu.Game.Screens.SelectV2
if (CurrentSelectionItem != null)
playSpinSample(distanceBetween(carouselItems.First(i => !ReferenceEquals(i.Model, set)), CurrentSelectionItem), visibleSets.Count);
RequestRecommendedSelection(set.Beatmaps);
RequestRecommendedSelection(set.Beatmaps.Where(b => !b.Hidden));
return true;
}