and fix that again

This commit is contained in:
Justus Wolff
2026-02-23 00:46:06 +01:00
parent d17ab84e67
commit 1e6f259bab

View File

@@ -717,7 +717,7 @@ local function VP_printstack(buf, dimensions, cx,cy,cz,direction)
local tempbuf = buf["stacks"][posasstring(x,z)]
if tempbuf then
cx,cz,direction = VP_moveto(x,z, cx,cz,direction)
for _=1,#tempbuf,1 do
for _=1,#tempbuf+1,1 do
move("down", true)
end
for _,v in pairs(tempbuf) do
@@ -726,7 +726,7 @@ local function VP_printstack(buf, dimensions, cx,cy,cz,direction)
end
move("up", true)
end
--move("up", true) -- not needed anymore
move("up", true)
end
end
end