Skip to content

Commit

Permalink
Fix broken info recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Aug 14, 2018
1 parent 3330e87 commit 8c07836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mezz/jei/startup/ModRegistry.java
Expand Up @@ -247,7 +247,7 @@ public void addDescription(ItemStack itemStack, String... descriptionKeys) {
@Override
public <T> void addIngredientInfo(T ingredient, IIngredientType<T> ingredientType, String... descriptionKeys) {
ErrorUtil.checkIsValidIngredient(ingredient, "ingredient");
ErrorUtil.checkIsValidIngredient(ingredientType, "ingredientType");
ErrorUtil.checkNotNull(ingredientType, "ingredientType");
ErrorUtil.checkNotEmpty(descriptionKeys, "descriptionKeys");

addIngredientInfo(Collections.singletonList(ingredient), ingredientType, descriptionKeys);
Expand Down

0 comments on commit 8c07836

Please sign in to comment.