Package appeng.items.tools

Examples of appeng.items.tools.ToolNetworkTool


  public void serverPacketData(INetworkInfo manager, AppEngPacket packet, EntityPlayer player)
  {
    ItemStack is = player.inventory.getCurrentItem();
    if ( is != null && is.getItem() instanceof ToolNetworkTool )
    {
      ToolNetworkTool tnt = (ToolNetworkTool) is.getItem();
      tnt.serverSideToolLogic( is, player, player.worldObj, x, y, z, side, hitX, hitY, hitZ );
    }
    else if ( is != null && AEApi.instance().items().itemMemoryCard.sameAsStack( is ) )
    {
      IMemoryCard mem = (IMemoryCard) is.getItem();
      mem.notifyUser( player, MemoryCardMessages.SETTINGS_CLEARED );
View Full Code Here

TOP

Related Classes of appeng.items.tools.ToolNetworkTool

Copyright © 2018 www.massapicom. 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.