Bug fixes

This commit is contained in:
UnlegitDqrk
2026-02-08 22:33:31 +01:00
parent e9c06f571f
commit fe11dd7701
6 changed files with 242 additions and 128 deletions

View File

@@ -96,12 +96,12 @@ public class Main {
Scanner scanner = new Scanner(System.in);
while (protocolBridge.getProtocolServer().getNetwork().isServerOnline()) {
System.out.print(commandExecutor.getName() + "> ");
String line = scanner.nextLine();
commandManager.execute(commandExecutor, line);
}
System.exit(0);
// while (protocolBridge.getProtocolServer().getNetwork().isServerOnline()) {
// System.out.print(commandExecutor.getName() + "> ");
// String line = scanner.nextLine();
// commandManager.execute(commandExecutor, line);
// }
//
// System.exit(0);
}
}