From 549c0e81134343c709a9f4e1f83fe8715814e7dc Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sun, 15 Feb 2026 11:40:26 +0100 Subject: [PATCH] add some user display about view coordinates --- src/main.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index 308105e..cf76016 100644 --- a/src/main.lua +++ b/src/main.lua @@ -94,7 +94,10 @@ local function newdesign() term.setcol(colors.yellow, colors.black) local _,y = term.getSize() term.setCursorPos(1,y) - term.write("Press Ctrl for menu.") + term.write("Press Ctrl for menu. ") + term.write("x: "..tostring(camx)) + term.write(" z: "..tostring(camy)) + term.write(" floor: "..tostring(currentfloor)) -- user input local event = table.pack(os.pullEvent())