This commit is contained in:
Dan Balasescu 2017-11-24 12:56:52 +09:00 committed by GitHub
parent 6686fe9ecd
commit a4b67b2559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@
using osu.Game.Rulesets.Taiko.Beatmaps; using osu.Game.Rulesets.Taiko.Beatmaps;
using osu.Game.Rulesets.Taiko.Objects; using osu.Game.Rulesets.Taiko.Objects;
using System.Collections.Generic; using System.Collections.Generic;
using System.Globalization;
using System; using System;
namespace osu.Game.Rulesets.Taiko namespace osu.Game.Rulesets.Taiko
@ -54,7 +53,7 @@ public override double Calculate(Dictionary<string, double> categoryDifficulty =
if (categoryDifficulty != null) if (categoryDifficulty != null)
{ {
categoryDifficulty.Add("Strain", starRating); categoryDifficulty.Add("Strain", starRating);
categoryDifficulty.Add("Hit window 300", (35 /*HitObjectManager.HitWindow300*/ / TimeRate)); categoryDifficulty.Add("Hit window 300", 35 /*HitObjectManager.HitWindow300*/ / TimeRate);
} }
return starRating; return starRating;