1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-21 20:33:01 +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) if (Current.Value >= glowBarValue)
finishMissDisplay(); finishMissDisplay();
if (pendingMissAnimation && Current.Value < glowBarValue) if (pendingMissAnimation)
{
triggerMissDisplay(); triggerMissDisplay();
pendingMissAnimation = false; pendingMissAnimation = false;
}
base.HealthChanged(increase); base.HealthChanged(increase);
} }