Rewrite difficulty mod combinations

This commit is contained in:
smoogipoo
2018-06-06 16:20:17 +09:00
parent e19ca0c120
commit 83ff47ec80
11 changed files with 243 additions and 166 deletions

View File

@ -84,7 +84,6 @@ namespace osu.Game.Rulesets.Catch
new CatchModNoFail(),
new MultiMod(new CatchModHalfTime(), new CatchModDaycore())
};
case ModType.DifficultyIncrease:
return new Mod[]
{
@ -94,7 +93,6 @@ namespace osu.Game.Rulesets.Catch
new CatchModHidden(),
new CatchModFlashlight(),
};
case ModType.Special:
return new Mod[]
{
@ -103,7 +101,6 @@ namespace osu.Game.Rulesets.Catch
null,
new MultiMod(new CatchModAutoplay(), new ModCinema()),
};
default:
return new Mod[] { };
}