1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 18:42:56 +08:00

Fix the local user's rank not showing on multiplayer/playlist results screen

Applying the simple solution for now. Not sure how this will evolve over
time, but seems sane enough.
This commit is contained in:
Dean Herbert 2021-12-08 15:22:02 +09:00
parent 724d72b975
commit 872e0884c0

View File

@ -157,6 +157,8 @@ namespace osu.Game.Screens.Play
request.Success += s =>
{
score.ScoreInfo.OnlineScoreID = s.ID;
score.ScoreInfo.Position = s.Position;
scoreSubmissionSource.SetResult(true);
};