fixed small bugs

This commit is contained in:
Illia Soloviov 2024-02-01 15:41:57 +01:00
parent c66f1ba2cb
commit 838d092dab

View File

@ -15,14 +15,14 @@ import java.util.Random;
public class SnakeBot extends Bot{ public class SnakeBot extends Bot{
private String moves = ""; private String moves = "";
boolean frontIsBlocked, backIsBlocked, leftIsBlocked, rightIsBlocked, trapped; private boolean frontIsBlocked, backIsBlocked, leftIsBlocked, rightIsBlocked, trapped;
private char previousTurn = '<'; private char previousTurn = '<';
private int spiralFactor = 1; private int spiralFactor = 1;
private char spiralDirection = '>'; private char spiralDirection = '>';
private boolean goesForward = true; private boolean goesForward = true;
public static void main(String[] args) { public static void main(String[] args) {
Bot SnakeBot = new SnakeBot(args); Bot snakeBot = new SnakeBot(args);
SnakeBot.run(); snakeBot.run();
} }
protected SnakeBot(String[] args) { protected SnakeBot(String[] args) {