1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 22:27:25 +08:00

Do not generate new judgement line on miss

This commit is contained in:
Andrei Zavatski 2019-08-11 19:04:56 +03:00
parent 5e0ac28ca8
commit 3136d46c7f

View File

@ -99,6 +99,9 @@ namespace osu.Game.Screens.Play.HUD
public void OnNewJudgement(JudgementResult judgement)
{
if (!judgement.IsHit)
return;
Container judgementLine;
Add(judgementLine = CreateJudgementLine(judgement));