1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:22:55 +08:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Jay Lawton
f03c466b80
Merge 4206325304 into f09d8f097a 2024-12-03 11:30:51 +00:00
Jay Lawton
4206325304 bump accuracy scaling 2024-12-03 21:30:34 +10:00

View File

@ -94,7 +94,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
// Scale accuracy more harshly on nearly-completely mono (single coloured) speed maps.
double accScalingExponent = 2 + attributes.MonoStaminaFactor;
double accScalingShift = 300 - 100 * attributes.MonoStaminaFactor;
double accScalingShift = 400 - 100 * attributes.MonoStaminaFactor;
return difficultyValue * Math.Pow(SpecialFunctions.Erf(accScalingShift / (Math.Sqrt(2) * estimatedUnstableRate.Value)), accScalingExponent);
}