Files
ATM10_CC_Codes/create_boiler_startup.lua

11 lines
310 B
Lua

-- Install this file as startup.lua on the Create control computer.
-- It resumes the persisted production state through create_boiler_display.lua.
if not fs.exists("create_boiler_display.lua") then
printError("create_boiler_display.lua fehlt")
return
end
sleep(1)
shell.run("create_boiler_display.lua")