Catch all exceptions not just NPE

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

View File

@ -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();
}