1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-04 14:44:44 +02:00

Catch all exceptions not just NPE

This commit is contained in:
nossr50
2019-05-13 01:40:54 -07:00
parent f7e6e3adb6
commit b5eb942682

@ -213,7 +213,7 @@ public class mcMMO extends JavaPlugin {
/*holidayManager.saveAnniversaryFiles();*/
placeStore.saveAll(); // Save our metadata
placeStore.cleanUp(); // Cleanup empty metadata stores
} catch (NullPointerException e) {
} catch (Exception e) {
e.printStackTrace();
}