Add (shaped) craft recipe for vertical mesecons

* Craft them from three wires in a vertical row
* Craft them back into mesecons by just putting one of them in the grid
This commit is contained in:
Jeija 2013-02-22 19:37:05 +01:00
parent a0920104fc
commit 36263d481a
1 changed files with 14 additions and 0 deletions

View File

@ -201,3 +201,17 @@ minetest.register_node("mesecons_extrawires:vertical_bottom_off", {
after_place_node = vertical_update,
after_dig_node = vertical_update
})
minetest.register_craft({
output = "mesecons_extrawires:vertical_off 3",
recipe = {
{"mesecons:wire_00000000_off"},
{"mesecons:wire_00000000_off"},
{"mesecons:wire_00000000_off"}
}
})
minetest.register_craft({
output = "mesecons:wire_00000000_off",
recipe = {{"mesecons_extrawires:vertical_off"}}
})