From ab12e4122f98dd69eed9c4e0e6683338ae6d906c Mon Sep 17 00:00:00 2001 From: Justus Wolff Date: Sat, 14 Feb 2026 22:28:25 +0100 Subject: [PATCH] fix reset again --- src/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index 85bb806..c742906 100644 --- a/src/main.lua +++ b/src/main.lua @@ -16,7 +16,7 @@ function term.setcol(fc, bc) term.setBackgroundColor(bc) end local function reset() - term.setcol(colors.white, colors.white) + term.setcol(colors.white, colors.black) term.clear() term.setCursorPos(1,1) end