1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 05:29:57 +08:00

Use single group for beatmaps of above 15 stars

Addresses https://github.com/ppy/osu/discussions/35201.
This commit is contained in:
Bartłomiej Dach
2025-10-24 10:19:32 +02:00
Unverified
parent f0bfb4becc
commit a816977208
@@ -368,7 +368,10 @@ namespace osu.Game.Screens.SelectV2
if (starInt == 1)
return new StarDifficultyGroupDefinition(1, "1 Star", starDifficulty).Yield();
return new StarDifficultyGroupDefinition(starInt, $"{starInt} Stars", starDifficulty).Yield();
if (starInt < 15)
return new StarDifficultyGroupDefinition(starInt, $"{starInt} Stars", starDifficulty).Yield();
return new StarDifficultyGroupDefinition(15, "Over 15 Stars", new StarDifficulty(15, 0)).Yield();
}
private IEnumerable<GroupDefinition> defineGroupByLength(double length)