From 90a54914be410308e3e9c6234534fdcbd64a3def Mon Sep 17 00:00:00 2001 From: justuswolff Date: Wed, 18 Feb 2026 20:15:57 +0100 Subject: [PATCH] change a bit of positioning under VP_printstack --- src/main.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.lua b/src/main.lua index 88c398d..26594a6 100644 --- a/src/main.lua +++ b/src/main.lua @@ -706,6 +706,9 @@ local function VP_printstack(buf, dimensions, cx,cz,direction) for _=1,buf["height"],1 do move("up") end + cx,cz,direction = VP_moveto(cx+1,cz, cx,cz,direction) + + local ox,oz = cx,cz for x=1,dimensions["x"],1 do for z=1,dimensions["z"],1 do @@ -729,6 +732,7 @@ local function VP_printstack(buf, dimensions, cx,cz,direction) for _=1,buf["height"],1 do move("down") end + VP_moveto(ox,oz, cx,cz,direction) return cx,cz,direction end