This commit is contained in:
2025-06-14 17:26:16 -04:00
parent a024fe61de
commit 6374746411

View File

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