Examples of TileIOPort


Examples of appeng.tile.storage.TileIOPort

  public boolean onActivated(World w, int x, int y, int z, EntityPlayer p, int side, float hitX, float hitY, float hitZ)
  {
    if ( p.isSneaking() )
      return false;

    TileIOPort tg = getTileEntity( w, x, y, z );
    if ( tg != null )
    {
      if ( Platform.isServer() )
        Platform.openGUI( p, tg, ForgeDirection.getOrientation( side ), GuiBridge.GUI_IOPORT );
      return true;
View Full Code Here

Examples of appeng.tile.storage.TileIOPort

  }

  @Override
  public final void onNeighborBlockChange(World w, int x, int y, int z, Block junk)
  {
    TileIOPort te = getTileEntity( w, x, y, z );
    if ( te != null )
      te.updateRedstoneState();
  }
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.