Package mekanism.common.tile

Examples of mekanism.common.tile.TileEntityBoundingBlock.onNeighborChange()


  @Override
  public void onNeighborBlockChange(World world, int x, int y, int z, Block block)
  {
    try {
      TileEntityBoundingBlock tileEntity = (TileEntityBoundingBlock)world.getTileEntity(x, y, z);
      tileEntity.onNeighborChange(block);
      world.getBlock(tileEntity.mainX, tileEntity.mainY, tileEntity.mainZ).onNeighborBlockChange(world, tileEntity.mainX, tileEntity.mainY, tileEntity.mainZ, this);
    } catch(Exception e) {}
  }

  @Override
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.