1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-31 23:50:29 +08:00

remove particular condition on convert nerf (#31196)

Co-authored-by: James Wilson <tsunyoku@gmail.com>
This commit is contained in:
Jay Lawton
2024-12-20 03:22:16 +10:00
committed by GitHub
Unverified
parent ecd6b41928
commit d8c3d899eb
@@ -113,9 +113,6 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
// For maps with relax, multiple inputs are more likely to be abused.
if (isRelax)
starRating *= 0.60;
// For maps with either relax or low colour variance and high stamina requirement, multiple inputs are more likely to be abused.
else if (colourRating < 2 && staminaRating > 8)
starRating *= 0.80;
}
HitWindows hitWindows = new TaikoHitWindows();