SX 201e215ad4 Add "Multimeter" network inspection tool (#137)
* (#107) Add network inspection tool

* (#107) Fix luacheck and crash if node does not have network

* (#107) Add few rows to display when no network

* (#107) Implement formspec functions, add remote start

* Multimeter texture

* Update formspec, textures and initial use behavior

Co-authored-by: SX <50966843+S-S-X@users.noreply.github.com>
2020-12-10 15:47:30 +02:00

25 lines
685 B
Lua

local path = technic.modpath.."/tools"
if technic.config:get_bool("enable_mining_drill") then
dofile(path.."/mining_drill.lua")
end
if technic.config:get_bool("enable_mining_laser") then
dofile(path.."/mining_lasers.lua")
end
if technic.config:get_bool("enable_flashlight") then
dofile(path.."/flashlight.lua")
end
dofile(path.."/cans.lua")
dofile(path.."/chainsaw.lua")
dofile(path.."/tree_tap.lua")
dofile(path.."/sonic_screwdriver.lua")
dofile(path.."/prospector.lua")
dofile(path.."/vacuum.lua")
dofile(path.."/multimeter.lua")
if minetest.get_modpath("screwdriver") then
-- compatibility alias
minetest.register_alias("technic:screwdriver", "screwdriver:screwdriver")
end