Implement NoFail mod

This commit is contained in:
Dean Herbert
2017-08-05 11:59:58 +09:00
parent 3416925233
commit 224de9cc1e
4 changed files with 19 additions and 4 deletions

View File

@ -15,5 +15,10 @@ namespace osu.Game.Rulesets.Mods
public override double ScoreMultiplier => 0.5;
public override bool Ranked => true;
public override Type[] IncompatibleMods => new[] { typeof(ModRelax), typeof(ModSuddenDeath), typeof(ModAutoplay) };
/// <summary>
/// We never fail, 'yo.
/// </summary>
public override bool AllowFail => false;
}
}