diff options
Diffstat (limited to 'routing_tubes.lua')
-rw-r--r-- | routing_tubes.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/routing_tubes.lua b/routing_tubes.lua index acd93af..3533bad 100644 --- a/routing_tubes.lua +++ b/routing_tubes.lua @@ -1,3 +1,14 @@ +-- the default tube and default textures +pipeworks.register_tube("pipeworks:tube", "Pneumatic tube segment") +minetest.register_craft( { + output = "pipeworks:tube_1 6", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "", "", "" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, +}) + if pipeworks.enable_accelerator_tube then local accelerator_noctr_textures = {"pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png", "pipeworks_accelerator_tube_noctr.png"} |