From ae5ed326c939927e45d0bf9310983306f5ff4878 Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sun, 15 Feb 2026 11:40:57 +0100 Subject: [PATCH] also change some display code --- src/main.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index cf76016..bf590dd 100644 --- a/src/main.lua +++ b/src/main.lua @@ -93,8 +93,9 @@ local function newdesign() end term.setcol(colors.yellow, colors.black) local _,y = term.getSize() - term.setCursorPos(1,y) + term.setCursorPos(1,y-1) term.write("Press Ctrl for menu. ") + term.setCursorPos(1,y) term.write("x: "..tostring(camx)) term.write(" z: "..tostring(camy)) term.write(" floor: "..tostring(currentfloor))