From f32a319279a7d01449589351fa27ebbb8ba78c96 Mon Sep 17 00:00:00 2001 From: itzmarkoni Date: Wed, 10 Dec 2025 20:03:56 -0500 Subject: [PATCH] updated --- .vscode/settings.json | 3 ++- consumer/main.lua | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 1edd44f..0dba810 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -12,6 +12,7 @@ }, "Lua.workspace.checkThirdParty": false, "Lua.diagnostics.disable": [ - "lowercase-global" + "lowercase-global", + "need-check-nil" ] } \ No newline at end of file diff --git a/consumer/main.lua b/consumer/main.lua index bf13fc2..b529536 100644 --- a/consumer/main.lua +++ b/consumer/main.lua @@ -1,5 +1,8 @@ +local monitor = peripheral.find("monitor") +monitor.setCursorPos(1, 1) + local function run() - Monitor.write("Starting system...\n") + monitor.write("Starting system...\n") end return { run = run } \ No newline at end of file