HybridDog
2013-10-27 f90915c40856b41f818847be680b466765f01f50
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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")