aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CrimsonIslePage.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CrimsonIslePage.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CrimsonIslePage.java
index 87548f5e..95009b1d 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CrimsonIslePage.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/CrimsonIslePage.java
@@ -211,6 +211,7 @@ public class CrimsonIslePage extends GuiProfileViewerPage {
public int getTotalKuudraRuns(JsonObject completedRuns) {
int totalRuns = 0;
for (Map.Entry<String, JsonElement> runs : completedRuns.entrySet()) {
+ if (runs.getKey().startsWith("highest_wave")) continue;
totalRuns += runs.getValue().getAsInt();
}
return totalRuns;