diff options
author | Novatux <nathanael.courant@laposte.net> | 2013-01-28 18:41:14 +0100 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2013-01-28 18:41:14 +0100 |
commit | 615157923fab2e6a30b226535df1d49c666c7f9e (patch) | |
tree | 100eff57a670e73787507d6ec607486f0d317201 /crafts.lua | |
parent | 4da23ce736705d089067ad31f7afe9311ac8b062 (diff) |
Added mese filter (takes full stack).
Diffstat (limited to 'crafts.lua')
-rw-r--r-- | crafts.lua | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -155,6 +155,15 @@ if io.open(minetest.get_modpath("pipeworks").."/../technic/init.lua", "r") == ni { "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" }, + { "default:stick", "default:mese", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" } + }, + }) minetest.register_craft( { output = "pipeworks:entry_panel 2", |