浏览代码

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

GJ 12 年之前
父节点
当前提交
ea4048dce9
共有 1 个文件被更改,包括 2 次插入2 次删除
  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++;
                 currentPos++;
                 continue;
                 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> {
     private static class SkillComparator implements Comparator<PlayerStat> {