This commit is contained in:
2025-06-14 17:28:05 -04:00
parent 6374746411
commit e5ea5fa6ec
2 changed files with 7 additions and 7 deletions

View File

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