Fix speed bonus comment

This commit is contained in:
vun 2022-07-16 19:48:29 +08:00
parent 8beb5568b8
commit a66fd87274

View File

@ -17,7 +17,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty.Evaluators
private static double speedBonus(double interval)
{
// Cap to 600bpm 1/4, 25ms note interval, 50ms key interval
// This is temporary measure to prevent mono abuses. Once that is properly addressed, interval will be
// This a is temporary measure to prevent mono abuses. Once that is properly addressed, interval will be
// capped at a very small value to avoid infinite/negative speed bonuses.
interval = Math.Max(interval, 50);