SnakeBot remove while

This commit is contained in:
Your Average Code 2024-01-25 00:47:01 +01:00
parent 74e8133b7c
commit 6c7d107424

View File

@ -8,10 +8,8 @@ public class SnakeBot extends Bot {
protected int steps = 0; protected int steps = 0;
public static void main(String[] args) { public static void main(String[] args) {
while (true) {
Bot bot = new SnakeBot(args); Bot bot = new SnakeBot(args);
bot.run(); bot.run();
}
} }
protected SnakeBot(String[] args) { protected SnakeBot(String[] args) {