small recipe fix (#2405)
* recipes may use given Ingredients when recipe provides and empty list for alternatives * remove language key
This commit is contained in:
@@ -177,8 +177,6 @@ public class CraftingPatternFactory {
|
||||
for (int i = 0; i < recipe.getIngredients().size(); ++i) {
|
||||
inputs.add(i, NonNullList.from(ItemStack.EMPTY, recipe.getIngredients().get(i).getMatchingStacks()));
|
||||
}
|
||||
} else {
|
||||
throw new CraftingPatternFactoryException(new TranslationTextComponent("misc.refinedstorage.pattern.error.recipe_no_ingredients"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -111,7 +111,6 @@
|
||||
"misc.refinedstorage.pattern.error.no_output": "Recipe has no output",
|
||||
"misc.refinedstorage.pattern.error.recipe_does_not_exist": "Recipe doesn't exist",
|
||||
"misc.refinedstorage.pattern.error.tag_no_longer_applicable": "Tag %s is no longer applicable for %s",
|
||||
"misc.refinedstorage.pattern.error.recipe_no_ingredients": "Recipe has no ingredients",
|
||||
"misc.refinedstorage.security.no_permission": "You have no permission to perform that action.",
|
||||
"misc.refinedstorage.start": "Start",
|
||||
"misc.refinedstorage.clear": "Clear",
|
||||
|
Reference in New Issue
Block a user