Examples of ChestWrapper


Examples of forestry.core.inventory.wrappers.ChestWrapper

    if (!PipeManager.canExtractItems(null, tile.getWorldObj(), tile.xCoord, tile.yCoord, tile.zCoord))
      return null;

    if (tile instanceof TileEntityChest) {
      TileEntityChest chest = (TileEntityChest) tile;
      return new ChestWrapper(chest);
    }
    return getInventory((IInventory) tile, side);
  }
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.