We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d260440 + ff98014 commit 60e847bCopy full SHA for 60e847b
osu.Game.Rulesets.Taiko/Difficulty/Skills/Stamina.cs
@@ -106,11 +106,11 @@ private double cheesePenalty(double notePairDuration)
106
/// <param name="notePairDuration">The duration between the current and previous note hit using the hand indicated by <see cref="hand"/>.</param>
107
private double speedBonus(double notePairDuration)
108
{
109
- if (notePairDuration >= 200) return 0;
110
-
111
- double bonus = 200 - notePairDuration;
112
- bonus *= bonus;
113
- return bonus / 100000;
+ if (notePairDuration >= 200) return 0;
+
+ double bonusOffset = 1 / Math.Pow(1.01, 200);
+ double bonus = 1 / Math.Pow(1.01, 200);
+ return bonus - bonusOffset;
114
}
115
116
0 commit comments