Merge pull request #12928 from Firmatorenio/fix-colour-hitmeter-not-registering-taiko-misses

Fix colour hit error meter incorrectly assuming taiko hits were of correct colour
This commit is contained in:
Dan Balasescu
2021-05-24 23:31:54 +09:00
committed by GitHub

View File

@ -24,7 +24,7 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
InternalChild = judgementsFlow = new JudgementFlow();
}
protected override void OnNewJudgement(JudgementResult judgement) => judgementsFlow.Push(GetColourForHitResult(HitWindows.ResultFor(judgement.TimeOffset)));
protected override void OnNewJudgement(JudgementResult judgement) => judgementsFlow.Push(GetColourForHitResult(judgement.Type));
private class JudgementFlow : FillFlowContainer<HitErrorCircle>
{