From 1fdd26a0149469f2dea15178dbe32269db98a5dc Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sat, 14 Feb 2026 22:25:53 +0100 Subject: [PATCH] fix incline... --- src/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.lua b/src/main.lua index 7cc1564..f21e6c1 100644 --- a/src/main.lua +++ b/src/main.lua @@ -16,8 +16,8 @@ local function reset() term.setCursorPos(1,1) end local function incline() - local x,y = term.getCursorPos() - term.setCursorPos(x,y+1) + local _,y = term.getCursorPos() + term.setCursorPos(1,y+1) end function term.setcol(fc, bc) term.setTextColor(fc)