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 void init() {
|
||||
addShaplessRecipes();
|
||||
addShapelessRecipes();
|
||||
addGeneralShappedRecipes();
|
||||
addHammerRecipes();
|
||||
addMachineRecipes();
|
||||
|
||||
addSmeltingRecipes();
|
||||
addUUrecipes();
|
||||
|
@ -176,7 +177,7 @@ public class ModRecipes {
|
|||
LogHelper.info("Shapped Recipes Added");
|
||||
}
|
||||
|
||||
static void addShaplessRecipes() {
|
||||
static void addShapelessRecipes() {
|
||||
|
||||
for(String name : ArrayUtils.addAll(BlockStorage.types, BlockStorage2.types)) {
|
||||
try {
|
||||
|
@ -212,7 +213,7 @@ public class ModRecipes {
|
|||
LogHelper.info("Shapless Recipes Added");
|
||||
}
|
||||
|
||||
static void addMachineRecipies()
|
||||
static void addMachineRecipes()
|
||||
{
|
||||
CraftingHelper.addShapedOreRecipe(new ItemStack(ModBlocks.ComputerCube),
|
||||
"DME", "MAM", "EMD",
|
||||
|
|
Loading…
Reference in a new issue