This commit is contained in:
2025-06-14 19:05:16 -04:00
parent 439a2d61b5
commit 0ff0aaf179
2 changed files with 7 additions and 6 deletions

View File

@@ -11,11 +11,6 @@ burnRateDriver = kernel.addDriver("burnrate_driver")
local function runMonitors()
local status = reactor.getStatus()
if(not status) then
reactor.activate()
return
end
parallel.waitForAll(tempDriver.watch, coolantDriver.watch, statusDriver.watch, turbineDriver.watch, burnRateDriver.watch)
-- while true do
-- tempDriver.watch()
@@ -70,7 +65,6 @@ local function run()
sleep(1)
end
monitor.clear();
reactor.setBurnRate(2)
parallel.waitForAll(runMonitors, runDisplay)
end