Skip to content
Snippets Groups Projects
Commit 36263d48 authored by Jeija's avatar Jeija
Browse files

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
parent a0920104
No related branches found
No related tags found
No related merge requests found
......@@ -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"}}
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment