1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 23:41:00 +08:00

Fix animation replacing itself even when score position hasn't changed

This commit is contained in:
Dean Herbert
2020-12-18 17:19:00 +09:00
Unverified
parent bca4d83af7
commit 4cf013c005
@@ -37,6 +37,9 @@ namespace osu.Game.Screens.Play.HUD
get => scorePosition;
set
{
if (value == scorePosition)
return;
scorePosition = value;
if (scorePosition.HasValue)