This commit is contained in:
destro174 2022-04-22 21:27:54 +02:00
parent e4dfecb7a3
commit b0ad269131

View File

@ -55,18 +55,6 @@ public class AltitudeBot {
Logger.exception(e);
}
initListeners();
new Thread("Console Thread") { // to gracefully shutdown if using intellij
@Override
public void run() {
Scanner scanner = new Scanner(System.in);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
if (line.equalsIgnoreCase("exit")) {
System.exit(0);
}
}
}
}.start();
//TODO init permissionManager
}