Bug fixes (im frustrated)

This commit is contained in:
UnlegitDqrk
2026-02-08 21:43:41 +01:00
parent e3fee17a73
commit e9c06f571f

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);
}
}