mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 08:39:49 +01:00
Merge pull request #505 from Glitchfinder/master
Fixing some leaderboard-related NPEs.
This commit is contained in:
commit
5b1337ed07
@ -48,6 +48,7 @@ public class Leaderboard {
|
||||
|
||||
while ((line = in.readLine()) != null) {
|
||||
String[] character = line.split(":");
|
||||
|
||||
String p = character[0];
|
||||
int powerLevel = 0;
|
||||
|
||||
@ -126,6 +127,9 @@ public class Leaderboard {
|
||||
plugin.getLogger().severe(("Exception while reading " + location + " (Are you sure you formatted it correctly?)" + e.toString()));
|
||||
}
|
||||
|
||||
if(PowerLevel.isEmpty())
|
||||
return;
|
||||
|
||||
//Sort the leader boards
|
||||
SkillComparator c = new SkillComparator();
|
||||
Collections.sort(Mining, c);
|
||||
|
Loading…
Reference in New Issue
Block a user