Said goodbye to RecipeHanderer
A bunch of ModRecipes fixes
This commit is contained in:
parent
ffc4d5f9c3
commit
02fce02d7b
10 changed files with 714 additions and 848 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue