1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 12:02:58 +08:00

Fix oversight from refactoring

This commit is contained in:
Bartłomiej Dach
2025-08-01 13:27:58 +02:00
Unverified
parent 2f5d89590f
commit db05adbdc0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -432,7 +432,7 @@ namespace osu.Game.Rulesets.Osu
.Reverse()
.Select(window => new RulesetBeatmapAttribute.AdditionalMetric(
$"{window.result.GetDescription().ToUpperInvariant()} hit window",
LocalisableString.Interpolate($@"±{hitWindows.WindowFor(window.result):0.##}ms"),
LocalisableString.Interpolate($@"±{hitWindows.WindowFor(window.result) / rate:0.##}ms"),
colours.ForHitResult(window.result)
)).Concat([
new RulesetBeatmapAttribute.AdditionalMetric("RPM required to clear spinners", LocalisableString.Interpolate($@"{IBeatmapDifficultyInfo.DifficultyRange(modAdjustedDifficulty.OverallDifficulty, Spinner.CLEAR_RPM_RANGE):N0} RPM")),
+1 -1
View File
@@ -308,7 +308,7 @@ namespace osu.Game.Rulesets.Taiko
.Reverse()
.Select(window => new RulesetBeatmapAttribute.AdditionalMetric(
$"{window.result.GetDescription().ToUpperInvariant()} hit window",
LocalisableString.Interpolate($@"±{hitWindows.WindowFor(window.result):0.##}ms"),
LocalisableString.Interpolate($@"±{hitWindows.WindowFor(window.result) / rate:0.##}ms"),
colours.ForHitResult(window.result)
))
.Append(new RulesetBeatmapAttribute.AdditionalMetric("Hits per second required to clear swells", LocalisableString.Interpolate($@"{TaikoBeatmapConverter.RequiredSwellHitsPerSecond(modAdjustedDifficulty.OverallDifficulty):0.##}")))