diff options
author | Tim <t4im@users.noreply.github.com> | 2015-01-29 20:10:45 +0100 |
---|---|---|
committer | Tim <t4im@users.noreply.github.com> | 2015-01-29 20:31:08 +0100 |
commit | fcba05fd780584e08eea1f2c6f6e341da7569af4 (patch) | |
tree | 947b6cdf8c260ff2c52e7478c98ea9c59d41cce7 /teleport_tube.lua | |
parent | c9d18f74e448c6953ffc7c1e0461b60c90220a2a (diff) |
move autocrafter, tp-tube and filter-injector crafts to their respective code files
Diffstat (limited to 'teleport_tube.lua')
-rw-r--r-- | teleport_tube.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/teleport_tube.lua b/teleport_tube.lua index a8d9edb..2e87548 100644 --- a/teleport_tube.lua +++ b/teleport_tube.lua @@ -221,6 +221,15 @@ pipeworks.register_tube("pipeworks:teleport_tube","Teleporting Pneumatic Tube Se end }) +minetest.register_craft( { + output = "pipeworks:teleport_tube_1 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:desert_stone", "default:mese_block", "default:desert_stone" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + if minetest.get_modpath("mesecons_mvps") ~= nil then mesecon.register_on_mvps_move(function(moved_nodes) for _, n in ipairs(moved_nodes) do |