From 8bb4bea1a45c5b6f961fb18de76e5b0d2b788d3d Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 2 Mar 2017 20:27:13 +0900 Subject: [PATCH] Fix incorrect ordering. --- osu.Game.Modes.Catch/CatchRuleset.cs | 2 +- osu.Game.Modes.Mania/ManiaRuleset.cs | 2 +- osu.Game.Modes.Taiko/TaikoRuleset.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game.Modes.Catch/CatchRuleset.cs b/osu.Game.Modes.Catch/CatchRuleset.cs index 88cd143abf..b1d0780739 100644 --- a/osu.Game.Modes.Catch/CatchRuleset.cs +++ b/osu.Game.Modes.Catch/CatchRuleset.cs @@ -37,8 +37,8 @@ public override IEnumerable GetModsFor(ModType type) { Mods = new Mod[] { - new CatchModPerfect(), new CatchModSuddenDeath(), + new CatchModPerfect(), }, }, new MultiMod diff --git a/osu.Game.Modes.Mania/ManiaRuleset.cs b/osu.Game.Modes.Mania/ManiaRuleset.cs index d896b7f401..df8a48262e 100644 --- a/osu.Game.Modes.Mania/ManiaRuleset.cs +++ b/osu.Game.Modes.Mania/ManiaRuleset.cs @@ -37,8 +37,8 @@ public override IEnumerable GetModsFor(ModType type) { Mods = new Mod[] { - new ManiaModPerfect(), new ManiaModSuddenDeath(), + new ManiaModPerfect(), }, }, new MultiMod diff --git a/osu.Game.Modes.Taiko/TaikoRuleset.cs b/osu.Game.Modes.Taiko/TaikoRuleset.cs index 113c272004..71b747f895 100644 --- a/osu.Game.Modes.Taiko/TaikoRuleset.cs +++ b/osu.Game.Modes.Taiko/TaikoRuleset.cs @@ -37,8 +37,8 @@ public override IEnumerable GetModsFor(ModType type) { Mods = new Mod[] { - new TaikoModPerfect(), new TaikoModSuddenDeath(), + new TaikoModPerfect(), }, }, new MultiMod