mirror of https://github.com/ppy/osu
Fix incorrect mania hold note tick judgements
This commit is contained in:
parent
ba4f81d022
commit
12641edb4d
|
@ -78,8 +78,6 @@ public override Color4 AccentColour
|
|||
}
|
||||
}
|
||||
|
||||
protected ManiaJudgement CreateJudgement() => new HoldNoteTickJudgement();
|
||||
|
||||
protected override void CheckForJudgements(bool userTriggered, double timeOffset)
|
||||
{
|
||||
if (!userTriggered)
|
||||
|
@ -91,7 +89,7 @@ protected override void CheckForJudgements(bool userTriggered, double timeOffset
|
|||
if (HoldStartTime?.Invoke() > HitObject.StartTime)
|
||||
return;
|
||||
|
||||
AddJudgement(new ManiaJudgement { Result = HitResult.Perfect });
|
||||
AddJudgement(new HoldNoteTickJudgement { Result = HitResult.Perfect });
|
||||
}
|
||||
|
||||
protected override void UpdateState(ArmedState state)
|
||||
|
|
Loading…
Reference in New Issue