Rebalance

This commit is contained in:
smoogipoo 2018-12-27 18:41:42 +09:00
parent 5f0ab0ed7f
commit 77e6f4ab92

View File

@ -45,7 +45,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
} }
} }
return speedBonus * angleBonus * (0.95 + Math.Pow(distance / SINGLE_SPACING_THRESHOLD, 4)) / current.StrainTime; return (1 + (speedBonus - 1) * .75) * angleBonus * (0.95 + speedBonus * Math.Pow(distance / SINGLE_SPACING_THRESHOLD, 3.5)) / current.StrainTime;
} }
} }
} }