1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 12:27:26 +08:00

Fix statistics update not being shown on results screen if it arrives too fast

As reported in
https://discord.com/channels/188630481301012481/1097318920991559880/1288160137286258799.
This commit is contained in:
Bartłomiej Dach 2024-09-24 17:52:19 +02:00
parent 555d4ffe89
commit 20e7ade3b0
No known key found for this signature in database

View File

@ -37,7 +37,7 @@ namespace osu.Game.Screens.Ranking.Statistics
{
if (update.NewValue?.Score.MatchesOnlineID(achievedScore) == true)
DisplayedUserStatisticsUpdate.Value = update.NewValue;
});
}, true);
}
}