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

@ -427,6 +427,8 @@ public class FabricServer extends DynmapServerInterface {
f.get();
} catch (CancellationException cx) {
return null;
} catch (InterruptedException cx) {
return null;
} catch (ExecutionException xx) {
Log.severe("Exception while loading chunks", xx.getCause());
return null;