1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

Perform initial update of PP counter value on load complete

This commit is contained in:
Bartłomiej Dach 2021-11-11 16:23:37 +01:00
parent dbdbfc4723
commit 2e3acffd1d
No known key found for this signature in database
GPG Key ID: BCECCD4FA41F6497

View File

@ -92,6 +92,9 @@ namespace osu.Game.Screens.Play.HUD
scoreProcessor.NewJudgement += onJudgementChanged;
scoreProcessor.JudgementReverted += onJudgementChanged;
}
if (gameplayState?.LastJudgementResult.Value != null)
onJudgementChanged(gameplayState.LastJudgementResult.Value);
}
private bool isValid;