[bugfix] - avoid create new instance of RobotEngine on every command
This commit is contained in:
parent
7989a98628
commit
3aaef8b3d3
@ -19,8 +19,9 @@ public class LoopingConsole {
|
||||
|
||||
printUsageBanner();
|
||||
|
||||
RobotEngine robotEngine = new RobotEngine();
|
||||
|
||||
while (true) {
|
||||
RobotEngine robotEngine = new RobotEngine();
|
||||
System.out.print("> ");
|
||||
String input = br.readLine();
|
||||
robotEngine.commandBot(input);
|
||||
|
Loading…
Reference in New Issue
Block a user