1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 16:47:46 +08:00

Fix misses not displaying properly

This commit is contained in:
Dean Herbert 2024-01-09 18:18:11 +09:00
parent b6505ba063
commit 80892f3167
No known key found for this signature in database

View File

@ -169,10 +169,11 @@ namespace osu.Game.Screens.Play.HUD
if (Current.Value >= glowBarValue)
finishMissDisplay();
if (pendingMissAnimation && Current.Value < glowBarValue)
if (pendingMissAnimation)
{
triggerMissDisplay();
pendingMissAnimation = false;
pendingMissAnimation = false;
}
base.HealthChanged(increase);
}