1
0
mirror of https://github.com/sciwhiz12/Janitor.git synced 2024-09-19 23:24:03 +00:00

Fix bot console

This commit is contained in:
Arnold Alejo Nunag 2020-09-14 23:03:30 +08:00
parent 62c1bbd13d
commit 29b109fcf6
Signed by: sciwhiz12
GPG Key ID: 622CF446534317E1

View File

@ -70,7 +70,7 @@ public class BotConsole {
continue;
}
CONSOLE.debug("Received command: {}", input);
BotConsole.this.parseCommand(scanner.nextLine());
BotConsole.this.parseCommand(input);
} catch (Exception e) {
CONSOLE.error("Error while running console thread", e);
}