summaryrefslogtreecommitdiff
path: root/crafts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'crafts.lua')
-rw-r--r--crafts.lua18
1 files changed, 17 insertions, 1 deletions
diff --git a/crafts.lua b/crafts.lua
index d5670a1..a2eebfb 100644
--- a/crafts.lua
+++ b/crafts.lua
@@ -71,6 +71,13 @@ minetest.register_craft( {
},
})
+minetest.register_craft( {
+ output = "pipeworks:fountainhead 2",
+ recipe = {
+ { "pipeworks:pipe_110000_empty" },
+ { "pipeworks:pipe_110000_empty" }
+ },
+})
-- Various ancillary tube devices
@@ -171,8 +178,17 @@ if minetest.get_modpath("homedecor") == nil then
end
+minetest.register_craft( {
+ output = "pipeworks:one_way_tube 2",
+ recipe = {
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "default:stick", "default:mese_crystal", "homedecor:plastic_sheeting" },
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ },
+})
+
-- If the technic mod is present, then don't bother registering the recipes
--- for the various tubes, as technic has its own recipes for those.
+-- for some tubes, as technic has its own recipes for those.
if not minetest.get_modpath("technic") then