Allow for clean shutdown

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

View file

@ -403,6 +403,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;