Some spelling fixes, added call to addMachineRecipes
This commit is contained in:
parent
6cc1071961
commit
7c7f7a252f
1 changed files with 4 additions and 3 deletions
|
@ -24,9 +24,10 @@ public class ModRecipes {
|
||||||
public static ConfigTechReborn config;
|
public static ConfigTechReborn config;
|
||||||
|
|
||||||
public static void init() {
|
public static void init() {
|
||||||
addShaplessRecipes();
|
addShapelessRecipes();
|
||||||
addGeneralShappedRecipes();
|
addGeneralShappedRecipes();
|
||||||
addHammerRecipes();
|
addHammerRecipes();
|
||||||
|
addMachineRecipes();
|
||||||
|
|
||||||
addSmeltingRecipes();
|
addSmeltingRecipes();
|
||||||
addUUrecipes();
|
addUUrecipes();
|
||||||
|
@ -176,7 +177,7 @@ public class ModRecipes {
|
||||||
LogHelper.info("Shapped Recipes Added");
|
LogHelper.info("Shapped Recipes Added");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void addShaplessRecipes() {
|
static void addShapelessRecipes() {
|
||||||
|
|
||||||
for(String name : ArrayUtils.addAll(BlockStorage.types, BlockStorage2.types)) {
|
for(String name : ArrayUtils.addAll(BlockStorage.types, BlockStorage2.types)) {
|
||||||
try {
|
try {
|
||||||
|
@ -212,7 +213,7 @@ public class ModRecipes {
|
||||||
LogHelper.info("Shapless Recipes Added");
|
LogHelper.info("Shapless Recipes Added");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void addMachineRecipies()
|
static void addMachineRecipes()
|
||||||
{
|
{
|
||||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.ComputerCube),
|
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.ComputerCube),
|
||||||
"DME", "MAM", "EMD",
|
"DME", "MAM", "EMD",
|
||||||
|
|
Loading…
Reference in a new issue