Add /end alias for /shutdown.

This commit is contained in:
Andrew Steinborn
2018-08-26 18:02:55 -04:00
parent ef556afbf3
commit 44c4221e19

View File

@@ -88,7 +88,7 @@ public class VelocityServer implements ProxyServer {
private VelocityServer() {
commandManager.register(new VelocityCommand(), "velocity");
commandManager.register(new ServerCommand(), "server");
commandManager.register(new ShutdownCommand(), "shutdown");
commandManager.register(new ShutdownCommand(), "shutdown", "end");
}
public static VelocityServer getServer() {