2013-07-11 12:19:09 -04:00
|
|
|
local path = technic.modpath.."/tools"
|
|
|
|
|
2013-07-17 15:34:35 -04:00
|
|
|
if technic.config:get_bool("enable_mining_drill") then
|
2013-07-11 12:19:09 -04:00
|
|
|
dofile(path.."/mining_drill.lua")
|
|
|
|
end
|
2013-07-17 15:34:35 -04:00
|
|
|
if technic.config:get_bool("enable_mining_laser") then
|
2013-07-11 12:19:09 -04:00
|
|
|
dofile(path.."/mining_laser_mk1.lua")
|
|
|
|
end
|
2013-07-17 15:34:35 -04:00
|
|
|
if technic.config:get_bool("enable_flashlight") then
|
2013-07-11 12:19:09 -04:00
|
|
|
dofile(path.."/flashlight.lua")
|
|
|
|
end
|
|
|
|
dofile(path.."/cans.lua")
|
|
|
|
dofile(path.."/chainsaw.lua")
|
|
|
|
dofile(path.."/tree_tap.lua")
|
|
|
|
dofile(path.."/sonic_screwdriver.lua")
|
|
|
|
|