Package com.flansmod.common.network

Examples of com.flansmod.common.network.PacketCraftDriveable


  public void craftDriveable(EntityPlayer player, DriveableType type)
  {
    //Craft it this side (so the inventory updates immediately) and then send a packet to the server so that it is crafted that side too
    super.craftDriveable(player, type);
    if(player.worldObj.isRemote)
      FlansMod.getPacketHandler().sendToServer(new PacketCraftDriveable(type.shortName));
  }
View Full Code Here

TOP

Related Classes of com.flansmod.common.network.PacketCraftDriveable

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.