Package com.flansmod.common.network

Examples of com.flansmod.common.network.PacketRepairDriveable


  public void repairDriveable(EntityPlayer driver, EntityDriveable driving, DriveablePart part)
  {
    //Repair it this side (so the inventory updates immediately) and then send a packet to the server so that it is repaired that side too
    super.repairDriveable(driver, driving, part);
    if(driver.worldObj.isRemote)
      FlansMod.getPacketHandler().sendToServer(new PacketRepairDriveable(part.type));
  }
View Full Code Here

TOP

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

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.