1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 00:20:38 +08:00

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
Unverified
@@ -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>
{