Make some properties virtual

I think they were intended to be this way from the beginning.
This commit is contained in:
smoogipoo 2021-02-24 15:03:37 +09:00
parent 14160b897e
commit 0b44d2483b
1 changed files with 2 additions and 2 deletions

View File

@ -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)
{