forked from minetest-mods/mesecons
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:
parent
a0920104fc
commit
36263d481a
|
@ -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"}}
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue
Block a user