RumbleBot smaller walking rounds

This commit is contained in:
Your Average Code 2024-01-25 01:20:17 +01:00
parent edea18ee8c
commit dec106ca98

View File

@ -61,7 +61,7 @@ public class RumbleBot extends Bot {
protected char walkAround(char[][] grid) {
if (steps == 0) {
currentStepCount++;
currentStepCount = (currentStepCount + 1) % 10;
if (offByOne) {
currentStepCount++;
}