1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-15 14:07:19 +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
parent bca4d83af7
commit 4cf013c005

View File

@ -37,6 +37,9 @@ namespace osu.Game.Screens.Play.HUD
get => scorePosition;
set
{
if (value == scorePosition)
return;
scorePosition = value;
if (scorePosition.HasValue)