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

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;