This commit is contained in:
2025-06-14 19:14:50 -04:00
parent 418afbb757
commit cda65592bf

View File

@@ -21,7 +21,7 @@ local function checkSteamLevel()
reactor.scram();
turbine.setDumpingMode("DUMPING")
burnRateDriver.stepDown()
elseif value <= maxVent-10 then
elseif value >= maxVent-10 then
print("Steam within vent range. Adjusting vents.")
turbine.setDumpingMode("DUMPING")
burnRateDriver.stepDown()
@@ -52,6 +52,7 @@ local function report()
value = getValue()
monitor.clearLine()
monitor.write("Turbine Steam: " .. value .. "%")
monitor.write("Turbine Vent: " .. turbine.getDumpingMode() .. "%")
end
return { report = report, watch = watch }