This commit is contained in:
2025-06-14 17:31:37 -04:00
parent e5ea5fa6ec
commit 78f224581f
2 changed files with 21 additions and 14 deletions

View File

@@ -21,17 +21,17 @@ local function watch()
end
function stepUp()
local value = getValue()
if value < max then
reactor.setBurnRate(value + rateStep)
end
-- local value = getValue()
-- if value < max then
-- reactor.setBurnRate(value + rateStep)
-- end
end
function stepDown()
local value = getValue()
if value > min then
reactor.setBurnRate(value - rateStep)
end
-- local value = getValue()
-- if value > min then
-- reactor.setBurnRate(value - rateStep)
-- end
end
local function report()