commit | author | age
|
5d470c
|
1 |
local path = technic.modpath.."/tools" |
S |
2 |
|
ee0765
|
3 |
if technic.config:get_bool("enable_mining_drill") then |
5d470c
|
4 |
dofile(path.."/mining_drill.lua") |
S |
5 |
end |
ee0765
|
6 |
if technic.config:get_bool("enable_mining_laser") then |
f90915
|
7 |
dofile(path.."/mining_lasers.lua") |
5d470c
|
8 |
end |
ee0765
|
9 |
if technic.config:get_bool("enable_flashlight") then |
5d470c
|
10 |
dofile(path.."/flashlight.lua") |
S |
11 |
end |
|
12 |
dofile(path.."/cans.lua") |
|
13 |
dofile(path.."/chainsaw.lua") |
|
14 |
dofile(path.."/tree_tap.lua") |
|
15 |
dofile(path.."/sonic_screwdriver.lua") |
636b0f
|
16 |
dofile(path.."/prospector.lua") |
46f3f8
|
17 |
dofile(path.."/vacuum.lua") |
5d470c
|
18 |
|
0294fc
|
19 |
if minetest.get_modpath("screwdriver") then |
Z |
20 |
-- compatibility alias |
|
21 |
minetest.register_alias("technic:screwdriver", "screwdriver:screwdriver") |
|
22 |
end |
|
23 |
|