mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 08:39:49 +01:00
Fix NPE on startup relating to old party files without an xp share mode
set.
This commit is contained in:
parent
137864dc04
commit
2762a9d1fd
@ -20,6 +20,9 @@ public final class ShareHandler {
|
|||||||
catch (IllegalArgumentException exception) {
|
catch (IllegalArgumentException exception) {
|
||||||
return NONE;
|
return NONE;
|
||||||
}
|
}
|
||||||
|
catch (NullPointerException exception) {
|
||||||
|
return NONE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user