We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cabb8f commit 99d304eCopy full SHA for 99d304e
Source/2_Core/Models/API/BeatLeader/Score.cs
@@ -20,6 +20,7 @@ public class Score : IScoreRowContent, IReplayHashProvider {
20
public int modifiedScore;
21
public string modifiers;
22
public float pp;
23
+ public bool withPp;
24
public float fcPp;
25
public int experience;
26
public int rank;
@@ -47,7 +48,7 @@ public bool ContainsValue(ScoreRowCellType cellType) {
47
48
ScoreRowCellType.Username => true,
49
ScoreRowCellType.Modifiers => true,
50
ScoreRowCellType.Accuracy => true,
- ScoreRowCellType.PerformancePoints => pp > 0,
51
+ ScoreRowCellType.PerformancePoints => withPp,
52
ScoreRowCellType.Score => true,
53
ScoreRowCellType.Mistakes => true,
54
ScoreRowCellType.Clans => true,
0 commit comments