Examples of SpecialCasedRecipe


Examples of xk.xact.api.SpecialCasedRecipe

    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 );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.