*/
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.