From ba5d21a7234f7ddb0abdb8a91e8d0c4a4ef47745 Mon Sep 17 00:00:00 2001 From: templeofshadow Date: Thu, 25 Jun 2026 16:17:07 -0500 Subject: [PATCH] fix monitor peripheral values being a string --- main.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.lua b/main.lua index 4be1f87..4a000fb 100644 --- a/main.lua +++ b/main.lua @@ -620,11 +620,15 @@ function Init() if Config.Monitors.InstrumentPanelMonitor == nil then print("Identifying instrument panel monitor...") Config.Monitors.InstrumentPanelMonitor = identifyMonitor("instrument panel") + else + Config.Monitors.InstrumentPanelMonitor.peripheral = peripheral.wrap(Config.Monitors.InstrumentPanelMonitor.name) end if Config.Monitors.AutopilotControlMonitor == nil then print("Identifying autopilot control monitor...") Config.Monitors.AutopilotControlMonitor = identifyMonitor("autopilot control") + else + Config.Monitors.AutopilotControlMonitor.peripheral = peripheral.wrap(Config.Monitors.AutopilotControlMonitor.name) end