commit | author | age
|
5d470c
|
1 |
local path = technic.modpath.."/tools" |
S |
2 |
|
|
3 |
if technic.config:getBool("enable_mining_drill") then |
|
4 |
dofile(path.."/mining_drill.lua") |
|
5 |
end |
|
6 |
if technic.config:getBool("enable_mining_laser") then |
|
7 |
dofile(path.."/mining_laser_mk1.lua") |
|
8 |
end |
|
9 |
if technic.config:getBool("enable_flashlight") then |
|
10 |
dofile(path.."/flashlight.lua") |
|
11 |
end |
|
12 |
dofile(path.."/cans.lua") |
|
13 |
dofile(path.."/chainsaw.lua") |
|
14 |
dofile(path.."/tree_tap.lua") |
|
15 |
dofile(path.."/sonic_screwdriver.lua") |
|
16 |
|