Fix JEI compat

This commit is contained in:
Nicholas Ignoffo 2017-01-02 01:18:02 -08:00
parent 4ec321aaac
commit 574056203d
23 changed files with 100 additions and 244 deletions

View file

@ -31,6 +31,6 @@ public class AlchemyTableRecipeHandler implements IRecipeHandler<AlchemyTableRec
@Override
public boolean isRecipeValid(@Nonnull AlchemyTableRecipeJEI recipe)
{
return recipe.getInputs().get(0).size() > 0 && recipe.getOutputs().size() > 0;
return true;
}
}