Cables now work in Recipes.

Added Ingredient Resolver Sets.
Shrunk MC Chest Battery.
This commit is contained in:
AlgorithmX2
2014-03-09 21:11:29 -05:00
parent dfd24a6756
commit d5748eb804
8 changed files with 191 additions and 16 deletions
+8 -1
View File
@@ -539,7 +539,14 @@ public class RecipeHandler implements IRecipeHandler
return gi.copy( qty );
data.knownItem.add( v );
return new Ingredient( this, v, qty );
try
{
return new Ingredient( this, v, qty );
}
catch (MissedIngredientSet grp)
{
return new IngredientSet( grp.rrs );
}
}
private boolean isNumber(String v)