diff options
author | Tim <t4im@users.noreply.github.com> | 2015-01-29 20:10:45 +0100 |
---|---|---|
committer | Tim <t4im@users.noreply.github.com> | 2015-01-29 20:31:08 +0100 |
commit | fcba05fd780584e08eea1f2c6f6e341da7569af4 (patch) | |
tree | 947b6cdf8c260ff2c52e7478c98ea9c59d41cce7 /filter-injector.lua | |
parent | c9d18f74e448c6953ffc7c1e0461b60c90220a2a (diff) |
move autocrafter, tp-tube and filter-injector crafts to their respective code files
Diffstat (limited to 'filter-injector.lua')
-rw-r--r-- | filter-injector.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/filter-injector.lua b/filter-injector.lua index dd0b187..a74397b 100644 --- a/filter-injector.lua +++ b/filter-injector.lua @@ -199,3 +199,21 @@ for _, data in ipairs({ end, }) end + +minetest.register_craft( { + output = "pipeworks:filter 2", + recipe = { + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" }, + { "group:stick", "default:mese_crystal", "homedecor:plastic_sheeting" }, + { "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" }, + { "group:stick", "default:mese", "homedecor:plastic_sheeting" }, + { "default:steel_ingot", "default:steel_ingot", "homedecor:plastic_sheeting" } + }, +}) |