From 5c03a5751fffec36f8a7f248f163f87133433643 Mon Sep 17 00:00:00 2001 From: justuswolff Date: Mon, 16 Feb 2026 19:30:03 +0100 Subject: [PATCH] fix progress rendering under ceiling/floor placement not showing placed blocks. --- src/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index 953e532..c86b959 100644 --- a/src/main.lua +++ b/src/main.lua @@ -393,7 +393,7 @@ local function printdes(buf, dimensions) reset() -- render current work for x=1,dimensions["x"],1 do for z=1,dimensions["z"],1 do - local currentbuf = pbuf[posasstring(x, cy, z)] + local currentbuf = pbuf[posasstring(x, 0, z)] term.setCursorPos(x, z) if currentbuf then -- wall term.blit(" ", colors.toBlit(colors.white), colors.toBlit(colors.white))