diff options
author | Novatux <nathanael.courant@laposte.net> | 2013-01-20 19:06:40 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2013-01-20 19:06:40 +0100 |
commit | c03414dc9d24ff0119408bbe2fc0d3e61401c490 (patch) | |
tree | 2a415ef5a0a4883c6f272e49393757c482223a36 /crafts.lua | |
parent | fe0fd686013bf24103d67a6a8b91ba19f41ca86e (diff) |
Added textures for sand and accelerator tubes, added crafting recipe for sand tube.
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", |