Package net.mcft.copy.betterstorage.tile.entity

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


  }
 
  @Override
  public void onBlockPreDestroy(World world, int x, int y, int z, int meta) {
    TileEntityContainer container = getContainer(world, x, y, z);
    if (container != null) container.onBlockDestroyed();
  }
 
  @Override
  public ItemStack getPickBlock(MovingObjectPosition target, World world, int x, int y, int z) {
    TileEntityContainer container = getContainer(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.