1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 02:21:17 +08:00

remove high CS bonus from slider bonus (#34214)

Co-authored-by: StanR <hi@stanr.info>
This commit is contained in:
Givikap120
2025-07-24 18:41:36 +03:00
committed by GitHub
Unverified
parent ddf9d6b8c8
commit 56b072cfd9
@@ -155,13 +155,13 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Evaluators
// Add in acute angle bonus or wide angle bonus, whichever is larger.
aimStrain += Math.Max(acuteAngleBonus * acute_angle_multiplier, wideAngleBonus * wide_angle_multiplier);
// Apply high circle size bonus
aimStrain *= osuCurrObj.SmallCircleBonus;
// Add in additional slider velocity bonus.
if (withSliderTravelDistance)
aimStrain += sliderBonus * slider_multiplier;
// Apply high circle size bonus
aimStrain *= osuCurrObj.SmallCircleBonus;
return aimStrain;
}