mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-15 15:00:45 +01:00
add docs
This commit is contained in:
parent
609a4fd0ea
commit
60963ca454
|
@ -32,7 +32,7 @@ if has_monitoring_mod then
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- collect all active switching stations
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = {"technic:switching_station"},
|
nodenames = {"technic:switching_station"},
|
||||||
label = "Switching Station",
|
label = "Switching Station",
|
||||||
|
@ -46,6 +46,7 @@ minetest.register_abm({
|
||||||
|
|
||||||
local off_delay_seconds = tonumber(minetest.settings:get("technic.switch.off_delay_seconds") or "300")
|
local off_delay_seconds = tonumber(minetest.settings:get("technic.switch.off_delay_seconds") or "300")
|
||||||
|
|
||||||
|
-- iterate over all collected switching stations and execute the technic_run function
|
||||||
local timer = 0
|
local timer = 0
|
||||||
minetest.register_globalstep(function(dtime)
|
minetest.register_globalstep(function(dtime)
|
||||||
timer = timer + dtime
|
timer = timer + dtime
|
||||||
|
|
Loading…
Reference in New Issue
Block a user