55565758596061
} public Recipe getRecipe(Collection<CauldronItemStack> items) throws UnknownRecipeException { for (Recipe recipe : recipes) { if (recipe.checkIngredients(items)) return recipe; } throw new UnknownRecipeException("Are you sure you have the right ingredients?"); }