1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-19 18:33:00 +01:00

Fix NPE on startup relating to old party files without an xp share mode

set.
This commit is contained in:
GJ
2013-02-01 07:57:00 -05:00
parent 137864dc04
commit 2762a9d1fd

View File

@@ -20,6 +20,9 @@ public final class ShareHandler {
catch (IllegalArgumentException exception) {
return NONE;
}
catch (NullPointerException exception) {
return NONE;
}
}
};