mirror of https://github.com/ppy/osu
Fix SD not failing for the first note
This commit is contained in:
parent
18b9828c49
commit
fea56322f0
|
@ -23,6 +23,6 @@ public void ApplyToScoreProcessor(ScoreProcessor scoreProcessor)
|
|||
scoreProcessor.FailConditions += FailCondition;
|
||||
}
|
||||
|
||||
protected virtual bool FailCondition(ScoreProcessor scoreProcessor) => scoreProcessor.Combo.Value != scoreProcessor.HighestCombo.Value;
|
||||
protected virtual bool FailCondition(ScoreProcessor scoreProcessor) => scoreProcessor.Combo.Value == 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue