Examples of CraftingManager


Examples of net.minecraft.item.crafting.CraftingManager

  /*
   * The usual version of this returns an ItemStack, this version returns the recipe.
   */
  public static IRecipe findMatchingRecipe(InventoryCrafting par1InventoryCrafting, World par2World)
  {
    CraftingManager cm = CraftingManager.getInstance();
    List<IRecipe> rl = cm.getRecipeList();

    for (IRecipe r : rl)
    {
      if ( r.matches( par1InventoryCrafting, par2World ) )
      {
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.