Mark "autoplay" and "cinema" mods as mutually exclusive

This commit is contained in:
Salman Ahmed
2022-03-29 17:25:05 +03:00
parent 30fae452a4
commit 8d4356f23b
2 changed files with 5 additions and 1 deletions

View File

@ -26,7 +26,7 @@ namespace osu.Game.Rulesets.Mods
public override bool UserPlayable => false;
public override Type[] IncompatibleMods => new[] { typeof(ModRelax), typeof(ModFailCondition), typeof(ModNoFail) };
public override Type[] IncompatibleMods => new[] { typeof(ModCinema), typeof(ModRelax), typeof(ModFailCondition), typeof(ModNoFail) };
public override bool HasImplementation => GetType().GenericTypeArguments.Length == 0;