From 053838f227cad4e22c9ad66b69916d1cfc953a60 Mon Sep 17 00:00:00 2001 From: neru Date: Tue, 6 May 2025 18:48:24 -0300 Subject: [PATCH] fix: change spelling of color --- lua/CC Tweaked/tutel/tutel-host.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index c2ec57a..3409a14 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -187,7 +187,7 @@ function updateScreen() local function drawTextCentered(text) local x = (w / 2) - (text:len() / 2) - local curX, curY = term.getCursorPos() + local _, curY = term.getCursorPos() term.setCursorPos(x, curY) term.write(text) end @@ -195,8 +195,8 @@ function updateScreen() term.clear() term.setCursorPos(1, 1) - term.setBackgroundColour(colours.lightGray) - term.setTextColour(colours.black) + term.setBackgroundColor(colors.lightGray) + term.setTextColour(colors.black) term.clearLine() drawTextCentered("tutel host controller") end