summaryrefslogtreecommitdiff
path: root/filter-injector.lua
diff options
context:
space:
mode:
authorTim <t4im@users.noreply.github.com>2015-01-29 20:10:45 +0100
committerTim <t4im@users.noreply.github.com>2015-01-29 20:31:08 +0100
commitfcba05fd780584e08eea1f2c6f6e341da7569af4 (patch)
tree947b6cdf8c260ff2c52e7478c98ea9c59d41cce7 /filter-injector.lua
parentc9d18f74e448c6953ffc7c1e0461b60c90220a2a (diff)
downloadpipeworks-fcba05fd780584e08eea1f2c6f6e341da7569af4.tar
pipeworks-fcba05fd780584e08eea1f2c6f6e341da7569af4.tar.gz
pipeworks-fcba05fd780584e08eea1f2c6f6e341da7569af4.tar.bz2
pipeworks-fcba05fd780584e08eea1f2c6f6e341da7569af4.tar.xz
pipeworks-fcba05fd780584e08eea1f2c6f6e341da7569af4.zip
move autocrafter, tp-tube and filter-injector crafts to their respective code files
Diffstat (limited to 'filter-injector.lua')
-rw-r--r--filter-injector.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/filter-injector.lua b/filter-injector.lua
index dd0b187..a74397b 100644
--- a/filter-injector.lua
+++ b/filter-injector.lua
@@ -199,3 +199,21 @@ for _, data in ipairs({
end,
})
end
+
+minetest.register_craft( {
+ output = "pipeworks:filter 2",
+ recipe = {
+ { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" },
+ { "group:stick", "default:mese_crystal", "homedecor:plastic_sheeting" },
+ { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" }
+ },
+})
+
+minetest.register_craft( {
+ output = "pipeworks:mese_filter 2",
+ recipe = {
+ { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" },
+ { "group:stick", "default:mese", "homedecor:plastic_sheeting" },
+ { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" }
+ },
+})