Fixed some recipes
This commit is contained in:
parent
33c2375246
commit
00dad58c6d
2 changed files with 15 additions and 6 deletions
|
@ -19,13 +19,23 @@ import techreborn.util.LogHelper;
|
|||
|
||||
public class ModItems {
|
||||
|
||||
|
||||
//This are deprected to stop people using them in the recipes.
|
||||
@Deprecated
|
||||
public static Item gems;
|
||||
@Deprecated
|
||||
public static Item ingots;
|
||||
@Deprecated
|
||||
public static Item nuggets;
|
||||
@Deprecated
|
||||
public static Item dusts;
|
||||
@Deprecated
|
||||
public static Item smallDusts;
|
||||
@Deprecated
|
||||
public static Item tinyDusts;
|
||||
@Deprecated
|
||||
public static Item parts;
|
||||
@Deprecated
|
||||
public static Item cells;
|
||||
public static Item rockCutter;
|
||||
public static Item lithiumBatpack;
|
||||
|
|
|
@ -105,11 +105,6 @@ public class ModRecipes {
|
|||
'A', "ingotBronze",
|
||||
'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),
|
||||
"AAA", "AMA", "AAA",
|
||||
'A', "ingotTitanium",
|
||||
|
@ -225,7 +220,11 @@ public class ModRecipes {
|
|||
'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"));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue