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:
parent
587cf09d2a
commit
e4fb5a01c9
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user