1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 00:52:56 +08:00

round numerical value

this is painfully annoying me
This commit is contained in:
Jay L 2022-08-19 23:23:40 +10:00
parent faf143b11a
commit c1da509119

View File

@ -84,7 +84,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty
difficultyValue *= 1.050;
if (score.Mods.Any(m => m is ModFlashlight<TaikoHitObject>))
difficultyValue *= 1.05 * lengthBonus;
difficultyValue *= 1.050 * lengthBonus;
return difficultyValue * Math.Pow(score.Accuracy, 2.0);
}