Compatibility with mtg_craft_guide (#555)

Use group instead of wire when possible

Fixes https://github.com/minetest/minetest_game/issues/2843.
This commit is contained in:
Louis Royer
2021-04-01 18:56:08 +02:00
committed by GitHub
parent 69d4a9584d
commit f5c3f798be
3 changed files with 6 additions and 5 deletions

View File

@ -175,9 +175,9 @@ mesecon.register_node("mesecons_extrawires:vertical_bottom", {
minetest.register_craft({
output = "mesecons_extrawires:vertical_off 3",
recipe = {
{"mesecons:wire_00000000_off"},
{"mesecons:wire_00000000_off"},
{"mesecons:wire_00000000_off"}
{"group:mesecon_conductor_craftable"},
{"group:mesecon_conductor_craftable"},
{"group:mesecon_conductor_craftable"},
}
})