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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user