Browse Source

Regardless of case, we need both a position & stat value for this.
Fixes #541

GJ 12 years ago
parent
commit
ea4048dce9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/gmail/nossr50/util/Leaderboard.java

+ 2 - 2
src/main/java/com/gmail/nossr50/util/Leaderboard.java

@@ -220,10 +220,10 @@ public class Leaderboard {
                 currentPos++;
                 continue;
             }
-            return new int[] {0};
+            return new int[] {0, 0};
         }
 
-        return new int[] {0};
+        return new int[] {0, 0};
     }
 
     private static class SkillComparator implements Comparator<PlayerStat> {