Package forestry.core.inventory.manipulators

Examples of forestry.core.inventory.manipulators.InventoryManipulator.canAddStack()


   */
  public static boolean isRoomForStack(ItemStack stack, IInventory dest) {
    if (stack == null || dest == null)
      return false;
    InventoryManipulator im = InventoryManipulator.get(dest);
    return im.canAddStack(stack);
  }

  /**
   * Removes a up to numItems worth of items from the inventory, not caring
   * about what the items are.
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.