mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Make some properties virtual
I think they were intended to be this way from the beginning.
This commit is contained in:
@ -11,9 +11,9 @@ namespace osu.Game.Rulesets.Mods
|
||||
{
|
||||
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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user