mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
Handle null PP during score set in TopScoreStatisticsSection
Supersedes #14562 Closes #14541
This commit is contained in:
parent
8f3416d853
commit
6aaef7b0be
@ -116,7 +116,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
||||
maxComboColumn.Text = value.MaxCombo.ToLocalisableString(@"0\x");
|
||||
|
||||
ppColumn.Alpha = value.Beatmap?.Status.GrantsPerformancePoints() == true ? 1 : 0;
|
||||
ppColumn.Text = value.PP.ToLocalisableString(@"N0");
|
||||
ppColumn.Text = value.PP?.ToLocalisableString(@"N0");
|
||||
|
||||
statisticsColumns.ChildrenEnumerable = value.GetStatisticsForDisplay().Select(createStatisticsColumn);
|
||||
modsColumn.Mods = value.Mods;
|
||||
|
Loading…
Reference in New Issue
Block a user