Skip to content

Commit 97fdc89

Browse files
authored
Merge pull request #35804 from Hiviexd/verify/update-taiko-drain-thresholds
Update drain thresholds in osu!taiko verify check
2 parents 83706b7 + 26c50b8 commit 97fdc89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

osu.Game.Rulesets.Taiko/Edit/Checks/CheckTaikoLowestDiffDrainTime.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ public class CheckTaikoLowestDiffDrainTime : CheckLowestDiffDrainTime
1313
protected override IEnumerable<(DifficultyRating rating, double thresholdMs, string name)> GetThresholds()
1414
{
1515
// See lowest difficulty requirements in https://osu.ppy.sh/wiki/en/Ranking_criteria/osu%21taiko#general
16-
yield return (DifficultyRating.Hard, new TimeSpan(0, 3, 30).TotalMilliseconds, "Muzukashii");
17-
yield return (DifficultyRating.Insane, new TimeSpan(0, 4, 15).TotalMilliseconds, "Oni");
18-
yield return (DifficultyRating.Expert, new TimeSpan(0, 5, 0).TotalMilliseconds, "Inner Oni");
16+
yield return (DifficultyRating.Hard, new TimeSpan(0, 2, 30).TotalMilliseconds, "Muzukashii");
17+
yield return (DifficultyRating.Insane, new TimeSpan(0, 3, 15).TotalMilliseconds, "Oni");
18+
yield return (DifficultyRating.Expert, new TimeSpan(0, 4, 0).TotalMilliseconds, "Inner Oni");
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)