mirror of https://github.com/ppy/osu
Make some properties virtual
I think they were intended to be this way from the beginning.
This commit is contained in:
parent
14160b897e
commit
0b44d2483b
|
@ -11,9 +11,9 @@ public abstract class ModFailCondition : Mod, IApplicableToHealthProcessor, IApp
|
|||
{
|
||||
public override Type[] IncompatibleMods => new[] { typeof(ModNoFail), typeof(ModRelax), typeof(ModAutoplay) };
|
||||
|
||||
public bool PerformFail() => true;
|
||||
public virtual bool PerformFail() => true;
|
||||
|
||||
public bool RestartOnFail => true;
|
||||
public virtual bool RestartOnFail => true;
|
||||
|
||||
public void ApplyToHealthProcessor(HealthProcessor healthProcessor)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue