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 {
|
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;
|
||||||
|
|
|
@ -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"));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue