Tim
2015-03-16 137695ea67cf7096311c893de7cf139e6307b26b
technic/tools/init.lua
@@ -1,16 +1,22 @@
local path = technic.modpath.."/tools"
if technic.config:getBool("enable_mining_drill") then
if technic.config:get_bool("enable_mining_drill") then
   dofile(path.."/mining_drill.lua")
end
if technic.config:getBool("enable_mining_laser") then
   dofile(path.."/mining_laser_mk1.lua")
if technic.config:get_bool("enable_mining_laser") then
   dofile(path.."/mining_lasers.lua")
end
if technic.config:getBool("enable_flashlight") then
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")
if minetest.get_modpath("screwdriver") then
   -- compatibility alias
   minetest.register_alias("technic:screwdriver", "screwdriver:screwdriver")
end