From 19ee451b3d8cc53de9390c6ef907a0506659994a Mon Sep 17 00:00:00 2001 From: templeofshadow Date: Thu, 25 Jun 2026 14:44:41 -0500 Subject: [PATCH] change identifyMonitor to be more like the peripheral.find() documentation --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index be508e7..e1dc6ab 100644 --- a/main.lua +++ b/main.lua @@ -62,7 +62,7 @@ Config.Monitors.AutopilotControlMonitor = nil local function identifyMonitor(monitorType) -- Find all available monitors - local monitors = peripheral.find("monitor") + local monitors = { peripheral.find("monitor") } if not monitors or #monitors == 0 then print("No monitors found on the network.")