public boolean parseCommand(String line) {
ServerCommand command = server.getCommandParser().getServerCommand(line.split(" ")[0]);
if ((command != null) && !(command instanceof InvalidCommand)) {
command.execute(server, line, feedback);
return !command.shouldPassThroughToConsole(server);
}
return false;
}
private void ignoreNextLines(int count) {