mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-12-25 09:50:19 +01:00
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_place_node = vertical_update,
|
||||||
after_dig_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