return RecipePointer.getRecipe( recipeID );
}
public boolean matchesIngredient(int ingredientIndex, ItemStack otherStack, World world) {
SpecialCasedRecipe specialCase = RecipeUtils.checkSpecialCase( this, otherStack, ingredientIndex, world );
if( specialCase != null )
return specialCase.isMatchingIngredient( this, otherStack, ingredientIndex, world );
return RecipeUtils.matchesIngredient( this, ingredientIndex, otherStack, world );
}