Only allow console to shut down Geyser with a command

This commit is contained in:
RednedEpic 2020-03-04 20:44:42 -06:00
parent c290e7a7fd
commit 1670c77672
4 changed files with 15 additions and 0 deletions

View file

@ -108,4 +108,9 @@ public class GeyserLogger extends SimpleTerminalConsole implements IGeyserLogger
public void sendMessage(String message) {
info(message);
}
@Override
public boolean isConsole() {
return true;
}
}