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

Increase SpeedBonus Cap to 600BPM

This commit is contained in:
Jay L 2022-07-16 21:20:25 +10:00
parent 9994f13031
commit 8a17b509d9

View File

@ -16,13 +16,11 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Evaluators
/// <param name="interval">The interval between the current and previous note hit using the same key.</param> /// <param name="interval">The interval between the current and previous note hit using the same key.</param>
private static double speedBonus(double interval) private static double speedBonus(double interval)
{ {
// Cap to 300bpm 1/4, 50ms note interval, 100ms key interval // Cap to 600bpm 1/4, 25ms note interval, 50ms key interval
// This is a temporary measure to prevent absurdly high speed mono convert maps being rated too high // This is a measure to prevent absurdly high speed maps giving infinity/negative values.
// There is a plan to replace this with detecting mono that can be hit by special techniques, and this will
// be removed when that is implemented.
interval = Math.Max(interval, 100); interval = Math.Max(interval, 100);
return 30 / interval; return 60 / interval;
} }
/// <summary> /// <summary>