Said goodbye to RecipeHanderer

A bunch of ModRecipes fixes
This commit is contained in:
joflashstudios 2015-06-08 10:45:21 -04:00
parent ffc4d5f9c3
commit 02fce02d7b
10 changed files with 714 additions and 848 deletions

View file

@ -115,7 +115,7 @@ public class RecipeCrafter {
}
if (currentRecipe == null) {//It will now look for new recipes.
currentTickTime = 0;
for (IBaseRecipeType recipe : RecipeHanderer.getRecipeClassFromName(recipeName)) {
for (IBaseRecipeType recipe : RecipeHandler.getRecipeClassFromName(recipeName)) {
if (recipe.canCraft(parentTile) && hasAllInputs(recipe)) {//This checks to see if it has all of the inputs
boolean canGiveInvAll = true;
for (int i = 0; i < recipe.getOutputsSize(); i++) {//This checks to see if it can fit all of the outputs

View file

@ -4,7 +4,7 @@ import java.util.ArrayList;
import java.util.List;
public class RecipeHanderer {
public class RecipeHandler {
/**
* This is the array list of all of the recipes for all of the machines