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
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ private double computeDifficultyValue(ScoreInfo score, TaikoDifficultyAttributes
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);
}