1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 17:23:22 +08:00

Maximise bonus score

This commit is contained in:
Dan Balasescu 2023-09-15 15:51:05 +09:00
parent 04ab44bb7a
commit ed295effc5

View File

@ -130,8 +130,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty
// We'll redo the calculations to match osu-stable here...
const double maximum_rotations_per_second = 477.0 / 60;
// Normally, this value depends on the final overall difficulty. For simplicity, we'll only consider the worst case that minimises bonus score.
const double minimum_rotations_per_second = 7.5;
// Normally, this value depends on the final overall difficulty. For simplicity, we'll only consider the worst case that maximises bonus score.
const double minimum_rotations_per_second = 3;
double secondsDuration = spinner.Duration / 1000;