add conversion routine for cheapie's auto tree taps

turns them into nodebreakers with technic taps if auto tree taps are not
defined and if technic tree taps are.
This commit is contained in:
Vanessa Ezekowitz
2014-07-11 09:15:37 -04:00
parent 87d87c91fa
commit 8aea4b1a13
2 changed files with 64 additions and 1 deletions

View File

@ -120,7 +120,11 @@ if pipeworks.enable_pipe_devices then dofile(pipeworks.modpath.."/devices.lua")
if pipeworks.enable_redefines then dofile(pipeworks.modpath.."/compat.lua") end
if pipeworks.enable_autocrafter then dofile(pipeworks.modpath.."/autocrafter.lua") end
if pipeworks.enable_deployer then dofile(pipeworks.modpath.."/deployer.lua") end
if pipeworks.enable_node_breaker then dofile(pipeworks.modpath.."/node_breaker.lua") end
if pipeworks.enable_node_breaker then
dofile(pipeworks.modpath.."/node_breaker.lua")
dofile(pipeworks.modpath.."/legacy.lua")
end
minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty")