Compatibility with mtg_craft_guide (#555)

Use group instead of wire when possible

Fixes https://github.com/minetest/minetest_game/issues/2843.
此提交包含在:
Louis Royer
2021-04-01 18:56:08 +02:00
提交者 GitHub
父節點 69d4a9584d
當前提交 f5c3f798be
共有 3 個檔案被更改,包括 6 行新增5 行删除

查看文件

@ -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"},
}
})