Recipe change

Change recipe to allow players to build both the lua and micro controllers.
Currently the recipe is duplicated between two devices making it impossible for players to make the lua controller
This change replace the second row of silicon with mesecon_conductors.
This commit is contained in:
Brackston 2017-08-14 11:59:31 -05:00 committed by GitHub
parent 564bdc2d9b
commit f6d607a2bc
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ minetest.register_craft({
output = 'craft "mesecons_microcontroller:microcontroller0000" 2',
recipe = {
{'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'},
{'mesecons_materials:silicon', 'mesecons_materials:silicon', 'group:mesecon_conductor_craftable'},
{'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable'},
{'group:mesecon_conductor_craftable', 'group:mesecon_conductor_craftable', ''},
}
})