You could use composition instead of inheritance (it sounds like your Car object needs to be refactored into smaller classes anyway: the Car object is huge).
The Car object could then contain a component that gives it the capability to fly. To disable the flying ability of the car you then just need to temporarily (or permanently if you want) remove the flying component from the Car object.