From 4b2a5900e3358797f879eff46f2e33f04c8c560a Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sun, 15 Feb 2026 12:34:15 +0100 Subject: [PATCH] forgot to return when just turning at move --- src/main.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.lua b/src/main.lua index 91b01c8..05bc4a0 100644 --- a/src/main.lua +++ b/src/main.lua @@ -206,9 +206,11 @@ end local function move(direction) if direction == "left" then turtle.turnLeft() + return end if direction == "right" then turtle.turnRight() + return end while true do if turtle.getFuelLevel() == 0 then