summaryrefslogtreecommitdiff
path: root/autocrafter.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 /autocrafter.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 'autocrafter.lua')
-rw-r--r--autocrafter.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/autocrafter.lua b/autocrafter.lua
index a24560e..d374fe9 100644
--- a/autocrafter.lua
+++ b/autocrafter.lua
@@ -340,3 +340,12 @@ minetest.register_node("pipeworks:autocrafter", {
end,
on_timer = run_autocrafter
})
+
+minetest.register_craft( {
+ output = "pipeworks:autocrafter 2",
+ recipe = {
+ { "default:steel_ingot", "default:mese_crystal", "default:steel_ingot" },
+ { "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" },
+ { "default:steel_ingot", "default:mese_crystal", "default:steel_ingot" }
+ },
+})