From df74060718c6b35eb0a852998249dd4b1a8a20f7 Mon Sep 17 00:00:00 2001 From: justuswolff Date: Mon, 16 Feb 2026 20:52:16 +0100 Subject: [PATCH] patch last added feature to actually go back to the starting position. --- src/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index 5a2a1b5..66b8ca5 100644 --- a/src/main.lua +++ b/src/main.lua @@ -456,7 +456,7 @@ local function printdes(buf, dimensions) cx,cz,direction = moveto(1,1,cx,cz,direction) move("up") end - moveto(0,0, cx,cz, direction) + moveto(1,0, cx,cz, direction) for _=1,dimensions["y"]*(4)+1,1 do -- go back to starting position move("down") end