private void CastRocketBoost()
    {
        networkCharacter.SetRocketThrusting(true);

        rocketThrusters[0].Play();
        rocketThrusters[1].Play();


        StartCoroutine(RocketThrustTime(thrustTime));
        StartCoroutine(RocketBoost());
    }