diff options
author | VanessaE <vanessaezekowitz@gmail.com> | 2013-01-20 17:35:13 -0800 |
---|---|---|
committer | VanessaE <vanessaezekowitz@gmail.com> | 2013-01-20 17:35:13 -0800 |
commit | a69d9d2e01e7e59c9b9a719f547097720dac0f8a (patch) | |
tree | 0efe09b0bf1d51f766a6739c7474bbe4609ecefb /crafts.lua | |
parent | a2fc5547001399fdfd2f6a2c2746c01b0f97244f (diff) | |
parent | 7b793fe5bd42c8f600d649489931ed6efa3a519d (diff) |
Merge pull request #12 from Novatux/master
Sand tubes, which take nearby items.
Diffstat (limited to 'crafts.lua')
-rw-r--r-- | crafts.lua | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -137,6 +137,15 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } }, }) + + minetest.register_craft( { + output = "pipeworks:sand_tube_000000 2", + recipe = { + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "default:sand", "default:sand", "default:sand" }, + { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + }, + }) minetest.register_craft( { output = "pipeworks:filter 2", |