geforkt von Mirrors/Velocity
Prevent commands run from console crashing the entire instance
Dieser Commit ist enthalten in:
Ursprung
668725759a
Commit
64682027a5
@ -68,8 +68,12 @@ public final class VelocityConsole extends SimpleTerminalConsole implements Comm
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void runCommand(String command) {
|
protected void runCommand(String command) {
|
||||||
if (!this.server.getCommandManager().execute(this, command)) {
|
try {
|
||||||
sendMessage(TextComponent.of("Command not found.", TextColor.RED));
|
if (!this.server.getCommandManager().execute(this, command)) {
|
||||||
|
sendMessage(TextComponent.of("Command not found.", TextColor.RED));
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("An error occurred while running this command.", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren