// Token: 0x06002BC1 RID: 11201 RVA: 0x000B9104 File Offset: 0x000B7304
 private void Advance()
 {
     if (NetworkServer.active)
     {
         if (this.projectileSimple)
         {
             this.projectileSimple.velocity = 0f;
             this.projectileSimple.enabled  = false;
         }
         if (base.rigidbody)
         {
             base.rigidbody.velocity = new Vector3(0f, Trajectory.CalculateInitialYSpeedForFlightDuration(DroneProjectilePrepHover.duration), 0f);
         }
     }
     if (base.isAuthority)
     {
         this.outer.SetNextState(new DroneProjectilePrepHover());
     }
 }