Package xk.xact.api

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

Related Classes of xk.xact.api.SpecialCasedRecipe

Copyright © 2018 www.massapicom. 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.