Revert "Add a config to lock the rolling machine recipe + some optimisations #1412"

This reverts commit 0b8f139
This commit is contained in:
modmuss50 2018-02-11 14:01:24 +00:00
parent 38933ca8a8
commit 3fe260b739
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
2 changed files with 17 additions and 43 deletions

View file

@ -145,16 +145,6 @@ public class RollingMachineRecipe {
return ItemStack.EMPTY;
}
public IRecipe findMatchingRecipeObj(InventoryCrafting inv, World world) {
for (IRecipe irecipe : recipes.values()) {
if (irecipe.matches(inv, world)) {
return irecipe;
}
}
return null;
}
public HashMap<ResourceLocation, IRecipe> getRecipeList() {
return recipes;
}