1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 12:40:18 +08:00

Remove strain being multiplied by max opacity bonus

This commit is contained in:
MBmasher
2021-11-17 11:27:48 +11:00
Unverified
parent efac11e886
commit f2d05ea899
@@ -80,11 +80,9 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
result = Math.Pow(smallDistNerf * result, 2.0);
if (hidden) {
result *= 1.0 + max_opacity_bonus;
// Additional bonus for Hidden due to there being no approach circles.
// Additional bonus for Hidden due to there being no approach circles.
if (hidden)
result *= 1.0 + hidden_bonus;
}
return result;
}