Package forestry.core.inventory.wrappers

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

Related Classes of forestry.core.inventory.wrappers.ChestWrapper

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.