Examples of neighborUpdate()


Examples of appeng.tile.qnb.TileQuantumBridge.neighborUpdate()

  @Override
  public void onNeighborBlockChange(World w, int x, int y, int z, Block pointlessNumber)
  {
    TileQuantumBridge bridge = getTileEntity( w, x, y, z );
    if ( bridge != null )
      bridge.neighborUpdate();
  }

  @Override
  public void breakBlock(World w, int x, int y, int z, Block a, int b)
  {
View Full Code Here

Examples of appeng.tile.qnb.TileQuantumBridge.neighborUpdate()

  @Override
  public void onNeighborBlockChange(World w, int x, int y, int z, Block pointlessNumber)
  {
    TileQuantumBridge bridge = getTileEntity( w, x, y, z );
    if ( bridge != null )
      bridge.neighborUpdate();
  }

  @Override
  public void breakBlock(World w, int x, int y, int z, Block a, int b)
  {
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.