Add missing IncompatibleMods.

This commit is contained in:
Dean Herbert 2017-03-07 09:16:47 +09:00 committed by GitHub
parent b55a579d15
commit 39ff68a812
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ public abstract class ModEasy : Mod
public override string Description => "Reduces overall difficulty - larger circles, more forgiving HP drain, less accuracy required.";
public override double ScoreMultiplier => 0.5;
public override bool Ranked => true;
public override Type[] IncompatibleMods => new[] { typeof(ModHardRock) };
}
public abstract class ModHidden : Mod