Fixed some recipes

This commit is contained in:
modmuss50 2015-08-16 11:19:25 +01:00
parent 33c2375246
commit 00dad58c6d
2 changed files with 15 additions and 6 deletions

View file

@ -19,13 +19,23 @@ import techreborn.util.LogHelper;
public class ModItems { public class ModItems {
//This are deprected to stop people using them in the recipes.
@Deprecated
public static Item gems; public static Item gems;
@Deprecated
public static Item ingots; public static Item ingots;
@Deprecated
public static Item nuggets; public static Item nuggets;
@Deprecated
public static Item dusts; public static Item dusts;
@Deprecated
public static Item smallDusts; public static Item smallDusts;
@Deprecated
public static Item tinyDusts; public static Item tinyDusts;
@Deprecated
public static Item parts; public static Item parts;
@Deprecated
public static Item cells; public static Item cells;
public static Item rockCutter; public static Item rockCutter;
public static Item lithiumBatpack; public static Item lithiumBatpack;

View file

@ -105,11 +105,6 @@ public class ModRecipes {
'A', "ingotBronze", 'A', "ingotBronze",
'M', new ItemStack(ModItems.parts, 1, 13)); 'M', new ItemStack(ModItems.parts, 1, 13));
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.parts, 1, 17),
"AAA", "AMA", "AAA",
'A', "ingotSteel",
'M', new ItemStack(ModItems.parts, 1, 13));
CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.parts, 1, 18), CraftingHelper.addShapedOreRecipe(new ItemStack(ModItems.parts, 1, 18),
"AAA", "AMA", "AAA", "AAA", "AMA", "AAA",
'A', "ingotTitanium", 'A', "ingotTitanium",
@ -225,7 +220,11 @@ public class ModRecipes {
'A', "plateAluminum"); 'A', "plateAluminum");
TechRebornAPI.addShapelessRollingMachinceRecipe(new ItemStack(Items.diamond), new ItemStack(Blocks.dirt));
TechRebornAPI.addRollingMachinceRecipe(ItemParts.getPartByName("cupronickelHeatingCoil"),
"NCN", "C C", "NCN",
'N', ItemIngots.getIngotByName("cupronickel"),
'C', ItemIngots.getIngotByName("copper"));
} }