Skip to content

Commit

Permalink
Revert change to ModSuddenDeath
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Dec 22, 2023
1 parent 88a5ba8 commit 5703546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Rulesets/Mods/ModSuddenDeath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public abstract class ModSuddenDeath : ModFailCondition
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModPerfect)).ToArray();

protected override bool FailCondition(HealthProcessor healthProcessor, JudgementResult result)
=> (result.Judgement.MinResult.AffectsCombo() || result.Judgement.MaxResult.AffectsCombo() || result.Type.AffectsCombo())
=> result.Type.AffectsCombo()
&& !result.IsHit;
}
}

0 comments on commit 5703546

Please sign in to comment.