소스 검색

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++;
                 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> {