Typo findIngrident
This commit is contained in:
parent
95a3f83932
commit
2d2aebd5b7
1 changed files with 3 additions and 3 deletions
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue