switch off delay setting

This commit is contained in:
BuckarooBanzay 2020-01-16 16:03:36 +01:00
parent 7466fd150a
commit 0edc72e35d
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ Recommended mods that build on the `technic mod`:
* **technic.quarry.quota** per-player and second quarry dig limit (default: 10)
* **technic.switch_max_range** max cable length (default: 256)
* **technic.switch.off_delay_seconds** switching station off delay (default: 300 seconds)
# Open issues

View File

@ -44,7 +44,7 @@ minetest.register_abm({
end
})
local off_delay_seconds = 300
local off_delay_seconds = tonumber(minetest.settings:get("technic.switch.off_delay_seconds") or "300")
local timer = 0
minetest.register_globalstep(function(dtime)