Fix fuel cell/electrolyzser recipe issue

master
Joachim Stolberg 2021-05-11 18:54:44 +02:00
parent 4b7fd5725d
commit 27cf14bafe
2 changed files with 2 additions and 2 deletions

View File

@ -304,7 +304,7 @@ minetest.register_craft({
output = "techage:ta4_electrolyzer",
recipe = {
{'default:steel_ingot', 'dye:blue', 'default:steel_ingot'},
{'techage:electric_cableS', 'default:glass', 'techage:tubeS'},
{'techage:electric_cableS', 'default:glass', 'techage:ta3_pipeS'},
{'default:steel_ingot', "techage:ta4_wlanchip", 'default:steel_ingot'},
},
})

View File

@ -435,7 +435,7 @@ minetest.register_craft({
output = "techage:ta4_fuelcell",
recipe = {
{'default:steel_ingot', 'dye:blue', 'default:steel_ingot'},
{'techage:tubeS', 'techage:ta4_fuelcellstack', 'techage:electric_cableS'},
{'techage:ta3_pipeS', 'techage:ta4_fuelcellstack', 'techage:electric_cableS'},
{'default:steel_ingot', "techage:ta4_wlanchip", 'default:steel_ingot'},
},
})