Allow for clean shutdown

This commit is contained in:
Mike Primm 2022-02-05 03:20:22 -06:00
parent e16b642e0c
commit cfcd8fbf3e
13 changed files with 34 additions and 0 deletions

View file

@ -918,6 +918,9 @@ public class DynmapPlugin
catch (CancellationException cx) {
return null;
}
catch (InterruptedException cx) {
return null;
}
catch (ExecutionException xx) {
Log.severe("Exception while loading chunks", xx.getCause());
return null;