Remove unnecessary parens

This commit is contained in:
Dan Balasescu 2021-11-12 17:31:25 +09:00
parent 512094c17b
commit 9fb2402781
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ protected override DifficultyAttributes CreateDifficultyAttributes(IBeatmap beat
double speedRating = Math.Sqrt(skills[2].DifficultyValue()) * difficulty_multiplier;
double flashlightRating = Math.Sqrt(skills[3].DifficultyValue()) * difficulty_multiplier;
double sliderFactor = (aimRating > 0) ? aimRatingNoSliders / aimRating : 1;
double sliderFactor = aimRating > 0 ? aimRatingNoSliders / aimRating : 1;
if (mods.Any(h => h is OsuModRelax))
speedRating = 0.0;