1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-22 08:51:26 +02:00

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

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

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