Add option to start server without terminal enabled

This commit is contained in:
Matt Worzala 2021-06-11 20:03:16 -04:00
parent 37f8306fb4
commit 8529249b85
No known key found for this signature in database
GPG Key ID: 439DBBE092854841

View File

@ -795,7 +795,8 @@ public final class MinecraftServer {
LOGGER.info("Minestom server started successfully.");
MinestomTerminal.start();
if (System.getProperty("minestom.terminal.disabled") == null)
MinestomTerminal.start();
}
/**