From 667eb1e2f757ecc18f7462c7c8e5ab4667d81d6f Mon Sep 17 00:00:00 2001 From: Illia Soloviov <74905269+wav3solo@users.noreply.github.com> Date: Sat, 6 Jan 2024 21:52:37 +0100 Subject: [PATCH] Added drafts for SnakeBot and RumbleBot --- src/SnakeBot.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/SnakeBot.java b/src/SnakeBot.java index cd952b6..5da9612 100644 --- a/src/SnakeBot.java +++ b/src/SnakeBot.java @@ -35,7 +35,6 @@ public class SnakeBot extends Bot{ count++; } } - return count; } private char goToStone(View view){ @@ -79,8 +78,6 @@ public class SnakeBot extends Bot{ } char nextMove = moves.charAt(0); moves = moves.substring(1); - - return nextMove; } }