Package powercrystals.minefactoryreloaded.core

Examples of powercrystals.minefactoryreloaded.core.RemoteInventoryCrafting


    return -1;
  }
 
  private ItemStack findMatchingRecipe()
  {
    InventoryCrafting craft = new RemoteInventoryCrafting();
    for(int i = 0; i < 9; i++)
    {
      craft.setInventorySlotContents(i, (_inventory[i] == null ? null : _inventory[i].copy()));
    }
   
    return CraftingManager.getInstance().findMatchingRecipe(craft, worldObj);
  }
View Full Code Here

TOP

Related Classes of powercrystals.minefactoryreloaded.core.RemoteInventoryCrafting

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.