1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 14:42:56 +08:00

Fix star rating rolling counter regression

This commit is contained in:
Joseph Madamba 2023-09-04 15:02:38 -07:00
parent 854bb323cc
commit 9accd0ded2
No known key found for this signature in database
GPG Key ID: 8B746C7BDDF0BD76

View File

@ -314,7 +314,7 @@ namespace osu.Game.Screens.Select
starRatingDisplay.Current.Value = s.NewValue ?? default;
// Don't roll the counter on initial display (but still allow it to roll on applying mods etc.)
if (starRatingDisplay.Alpha > 0)
if (!starRatingDisplay.IsPresent)
starRatingDisplay.FinishTransforms(true);
starRatingDisplay.FadeIn(transition_duration);