1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 07:59:54 +08:00

Missed one

This commit is contained in:
PercyDan
2021-08-12 10:14:01 +08:00
Unverified
parent 18ecd8758b
commit d80a2dcca7
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Mods
public virtual bool PerformFail() => true;
public virtual bool RestartOnFail => true;
public virtual bool RestartOnFail => Restart.Value;
public void ApplyToHealthProcessor(HealthProcessor healthProcessor)
{
-2
View File
@@ -23,8 +23,6 @@ namespace osu.Game.Rulesets.Mods
public override bool PerformFail() => true;
public override bool RestartOnFail => Restart.Value;
protected override bool FailCondition(HealthProcessor healthProcessor, JudgementResult result)
=> result.Type.AffectsCombo()
&& !result.IsHit;