attempt at fixing the item stack size issue

This commit is contained in:
modmuss50 2015-06-07 09:21:37 +01:00
parent 92af5a1537
commit 94803e88f3
23 changed files with 90 additions and 74 deletions

View file

@ -9,8 +9,8 @@ public class EmcValues {
public static void init()
{
for(IBaseRecipeType recipeType : RecipeHanderer.recipeList){
if(recipeType.getOutputs().size() == 1){
RecipeRegistryProxy.addRecipe(recipeType.getOutputs().get(0), recipeType.getInputs());
if(recipeType.getOutputsSize() == 1){
RecipeRegistryProxy.addRecipe(recipeType.getOutput(0), recipeType.getInputs());
}
}
}