Skip to content

Commit

Permalink
fixed HD bonus for slideraim
Browse files Browse the repository at this point in the history
  • Loading branch information
Givikap120 committed May 11, 2024
1 parent ca61a82 commit cbb59b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private double computeAimValue(ScoreInfo score, OsuDifficultyAttributes attribut
else if (score.Mods.Any(h => h is OsuModHidden))
{
// We want to give more reward for lower AR when it comes to aim and HD. This nerfs high AR and buffs lower AR.
aimValue *= 1.0 + 0.04 * (12.0 - attributes.ApproachRate) * attributes.SliderFactor;
aimValue *= 1.0 + 0.04 * (12.0 - attributes.ApproachRate) * (0.5 + 0.5 * Math.Pow(attributes.SliderFactor, 3));
}

aimValue *= accuracy;
Expand Down

0 comments on commit cbb59b4

Please sign in to comment.