Open 2.1.0: can't craft advanced solar helmet

Bowon Nam

New Member
Jul 29, 2019
1
0
0
Version:
2.1.0

What is the bug:
Hi, I'm using FTB infinity mod packs and I'm trying to craft advanced solar helmet, hybrid solar helmet, and ultimate solar helmet in advanced solar panel mod. I can see an appropriate recipe for those items, but, I can't craft those items.. I don't know why.. I have all items in recipe, but when i put on those recipe items on crafting table, resulting item which is advanced solar helmet doesn't come out...

can you tell me why? and how can I fix this?

Mod & Version:


Paste.feed-the-beast.com log:


Can it be repeated:


Known Fix:
 

Booker The Geek

Well-Known Member
Feb 26, 2013
1,664
222
78
Pacific North West, USA
Code:
#Hybrid Solar Helmet fix
recipes.remove(<AdvancedSolarPanel:hybrid_solar_helmet>);
recipes.addShaped(<AdvancedSolarPanel:hybrid_solar_helmet>,[
    [null,  <AdvancedSolarPanel:BlockAdvSolarPanel:1>, null],
    [<IC2:itemPartCircuitAdv>, <IC2:itemArmorQuantumHelmet:*>, <IC2:itemPartCircuitAdv>],
    [<IC2:itemCable:9>, <IC2:blockElectric:5>, <IC2:itemCable:9>]]);
Code:
#Advanced Solar Helmet fix
recipes.remove(<AdvancedSolarPanel:advanced_solar_helmet>);
recipes.addShaped(<AdvancedSolarPanel:advanced_solar_helmet>,[
    [null, <AdvancedSolarPanel:BlockAdvSolarPanel>, null],
    [<IC2:itemPartCircuitAdv>, <IC2:itemArmorNanoHelmet:*>, <IC2:itemPartCircuitAdv>],
    [<IC2:itemCable:3>, <IC2:blockElectric:3>, <IC2:itemCable:3>]]);
Code:
#Ultimate Solar Helmet fix
recipes.remove(<AdvancedSolarPanel:ultimate_solar_helmet>);
recipes.addShaped(<AdvancedSolarPanel:ultimate_solar_helmet>,[
    [null, <AdvancedSolarPanel:BlockAdvSolarPanel:2>, null],
    [<IC2:itemPartCircuitAdv>, <IC2:itemArmorQuantumHelmet:*>, <IC2:itemPartCircuitAdv>],
    [<IC2:itemCable:9>, <IC2:blockElectric:5>, <IC2:itemCable:9>]]);
recipes.addShaped(<AdvancedSolarPanel:ultimate_solar_helmet>,[
    [<AdvancedSolarPanel:BlockAdvSolarPanel:2>, null, null],
    [<AdvancedSolarPanel:hybrid_solar_helmet:*>, null, null],
    [null, null, null]]);