From 2b87d16599f3becc5083389a12ef1c72e43d6347 Mon Sep 17 00:00:00 2001 From: Dark98 <71676472+TheDark98@users.noreply.github.com> Date: Fri, 17 Jan 2025 02:47:43 +0100 Subject: [PATCH] Update TaikoDifficultyCalculator.cs --- osu.Game.Rulesets.Taiko/Difficulty/TaikoDifficultyCalculator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Rulesets.Taiko/Difficulty/TaikoDifficultyCalculator.cs b/osu.Game.Rulesets.Taiko/Difficulty/TaikoDifficultyCalculator.cs index a4125d051d..54d0c76806 100644 --- a/osu.Game.Rulesets.Taiko/Difficulty/TaikoDifficultyCalculator.cs +++ b/osu.Game.Rulesets.Taiko/Difficulty/TaikoDifficultyCalculator.cs @@ -219,7 +219,7 @@ namespace osu.Game.Rulesets.Taiko.Difficulty weight *= 0.9; } - // We can calculate the consitency factor by doing middle weight spikes / most weight spikes. + // We can calculate the consitency factor by doing average of spikes / most weight spikes. // It result in a value that represent the consistency for all peaks in a range number from 0 to 1. totalConsistencyFactor = peaks.Average() / hardStrains.Average();