1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-18 10:53:21 +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
parent ecd6b41928
commit d8c3d899eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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();