1
0
mirror of https://github.com/mt-mods/pipeworks.git synced 2025-06-29 14:50:41 +02:00

move autocrafter, tp-tube and filter-injector crafts to their respective code files

This commit is contained in:
Tim
2015-01-29 20:10:45 +01:00
parent c9d18f74e4
commit fcba05fd78
4 changed files with 36 additions and 38 deletions

View File

@ -340,3 +340,12 @@ minetest.register_node("pipeworks:autocrafter", {
end,
on_timer = run_autocrafter
})
minetest.register_craft( {
output = "pipeworks:autocrafter 2",
recipe = {
{ "default:steel_ingot", "default:mese_crystal", "default:steel_ingot" },
{ "homedecor:plastic_sheeting", "default:steel_ingot", "homedecor:plastic_sheeting" },
{ "default:steel_ingot", "default:mese_crystal", "default:steel_ingot" }
},
})