From 2d2aebd5b768d4805d42b5940892ba46326f2cbd Mon Sep 17 00:00:00 2001 From: thatsIch Date: Sun, 21 Sep 2014 01:43:30 +0200 Subject: [PATCH] Typo findIngrident --- recipes/RecipeHandler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes/RecipeHandler.java b/recipes/RecipeHandler.java index d5949ae0c..e78863f2b 100644 --- a/recipes/RecipeHandler.java +++ b/recipes/RecipeHandler.java @@ -592,11 +592,11 @@ public class RecipeHandler implements IRecipeHandler { if ( hasQty ) { - cList.add( findIngrident( v, qty ) ); + cList.add( findIngredient( v, qty ) ); hasQty = false; } else - cList.add( findIngrident( v, 1 ) ); + cList.add( findIngredient( v, 1 ) ); } } } @@ -607,7 +607,7 @@ public class RecipeHandler implements IRecipeHandler return out; } - private IIngredient findIngrident(String v, int qty) throws RecipeError + private IIngredient findIngredient(String v, int qty) throws RecipeError { GroupIngredient gi = data.groups.get( v );