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

Fixes #541
This commit is contained in:
GJ 2013-01-21 19:07:17 -05:00
parent 0a295f7738
commit ea4048dce9

View File

@ -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> {