Examples of onPickBlock()


Examples of net.mcft.copy.betterstorage.tile.entity.TileEntityContainer.onPickBlock()

    if (container instanceof IHasAttachments) {
      ItemStack pick = ((IHasAttachments)container).getAttachments().pick(target);
      if (pick != null) return pick;
    }
    ItemStack pick = super.getPickBlock(target, world, x, y, z);
    return container.onPickBlock(pick, target);
  }
 
  @Override
  public int getComparatorInputOverride(World world, int x, int y, int z, int direction) {
    return TileEntityContainer.getContainerComparatorSignalStrength(world, x, y, z);
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.