diff options
author | VanessaE <vanessaezekowitz@gmail.com> | 2013-03-25 13:31:39 -0700 |
---|---|---|
committer | VanessaE <vanessaezekowitz@gmail.com> | 2013-03-25 13:31:39 -0700 |
commit | c88e8639eab9c01d395ee99f8d9467af57105929 (patch) | |
tree | 69a604c3c93ef83eced31cafd21c22f57bafc12f | |
parent | 519a99f44e4b6bad4c77088f55b667b12939868e (diff) | |
parent | d9c1984d200d1c825ad59584597e72a98bfbef70 (diff) | |
download | pipeworks-c88e8639eab9c01d395ee99f8d9467af57105929.tar pipeworks-c88e8639eab9c01d395ee99f8d9467af57105929.tar.gz pipeworks-c88e8639eab9c01d395ee99f8d9467af57105929.tar.bz2 pipeworks-c88e8639eab9c01d395ee99f8d9467af57105929.tar.xz pipeworks-c88e8639eab9c01d395ee99f8d9467af57105929.zip |
Merge pull request #21 from Uberi/master
Add autocrafter recipe.
-rw-r--r-- | crafts.lua | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -85,6 +85,15 @@ minetest.register_craft( { }, }) +minetest.register_craft( { + output = "pipeworks:autocrafter 2", + recipe = { + { "default:steel_ingot", "default:mese", "default:steel_ingot" }, + { "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "default:mese", "default:steel_ingot" } + }, +}) + -- The tubes themselves |