Tweaked thermal generator, closes #100

This commit is contained in:
modmuss50 2015-08-16 12:17:02 +01:00
parent 5b2bc53cfc
commit ccb028a202
2 changed files with 17 additions and 2 deletions

View file

@ -117,13 +117,20 @@ public class RecipesIC2 implements ICompatModule {
'I', "plateInvar",
'H', IC2Items.getItem("reinforcedGlass"),
'C', "circuitBasic",
'G', IC2Items.getItem("geothermalGenerator"));
'G', new ItemStack(ModBlocks.heatGenerator));
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.thermalGenerator),
"AAA", "AHA", "CGC",
'A', "plateAluminum",
'H', IC2Items.getItem("reinforcedGlass"),
'C', "circuitBasic",
'G', new ItemStack(ModBlocks.heatGenerator));
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.heatGenerator),
"III", "IHI", "CGC",
'I', "plateIron",
'H', new ItemStack(Blocks.iron_bars),
'C', "circuitBasic",
'G', IC2Items.getItem("geothermalGenerator"));
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.Gasturbine),