Fix typo.

This commit is contained in:
Dean Herbert 2017-03-06 22:57:30 +09:00
parent 12a3b1414f
commit b55a579d15
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ namespace osu.Game.Modes.Osu
public override Type[] IncompatibleMods => new[] { typeof(OsuModSpunOut), typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModPerfect), typeof(ModNoFail), typeof(ModAutoplay), typeof(ModCinema) }; public override Type[] IncompatibleMods => new[] { typeof(OsuModSpunOut), typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModPerfect), typeof(ModNoFail), typeof(ModAutoplay), typeof(ModCinema) };
} }
public class OsuModeAutoplay : ModAutoplay public class OsuModAutoplay : ModAutoplay
{ {
public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray(); public override Type[] IncompatibleMods => base.IncompatibleMods.Concat(new[] { typeof(OsuModAutopilot) }).ToArray();
} }

View File

@ -81,7 +81,7 @@ namespace osu.Game.Modes.Osu
{ {
Mods = new Mod[] Mods = new Mod[]
{ {
new OsuModeAutoplay(), new OsuModAutoplay(),
new ModCinema(), new ModCinema(),
}, },
}, },