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

readded missing aim nerf for low acc

This commit is contained in:
Xexxar 2021-09-26 21:58:26 +00:00
parent 587cf09d2a
commit e4fb5a01c9

View File

@ -114,8 +114,8 @@ namespace osu.Game.Rulesets.Osu.Difficulty
aimValue *= approachRateBonus;
// Scale the aim value with accuracy _slightly_.
aimValue *= 0.5 + accuracy / 2.0;
// Scale the aim value with accuracy
aimValue *= accuracy;
// It is important to also consider accuracy difficulty when doing that.
aimValue *= 0.98 + Math.Pow(Attributes.OverallDifficulty, 2) / 2500;