1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-05 03:13:22 +08:00

remove hr multiplier in perfcalc

This commit is contained in:
Jay Lawton 2024-12-01 15:31:14 +10:00
parent 63c2ddb99e
commit edbef20c69

View File

@ -86,9 +86,6 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
if (score.Mods.Any(m => m is ModHidden))
difficultyValue *= 1.025;
if (score.Mods.Any(m => m is ModHardRock))
difficultyValue *= 1.10;
if (score.Mods.Any(m => m is ModFlashlight<TaikoHitObject>))
difficultyValue *= Math.Max(1, 1.050 - Math.Min(attributes.MonoStaminaFactor / 50, 1) * lengthBonus);