Turn off AI "Rebase" animations in Civilization 5?

Ok. I think I figured it out. The "Faster Aircraft Animation" mod doesn't cover the entire animation. I made a custom mod that does all of these database updates, and it solves the issue. Note that the last 3 updates are copied out of the "Faster Aircraft Animations" mod.

UPDATE MovementRates SET TotalTime = 0.01 WHERE Type = "AIR_REBASE";
UPDATE AnimationPaths SET MissionPath = 0 WHERE Type = "ANIMATIONPATH_AIRFADEIN";
UPDATE AnimationPaths SET MissionPath = 0 WHERE Type = "ANIMATIONPATH_AIRFADEOUT";
UPDATE ArtDefine_UnitMemberCombats SET MoveRate = 100*MoveRate;
UPDATE ArtDefine_UnitMemberCombats SET TurnRateMin = 100*TurnRateMin WHERE MoveRate > 0;
UPDATE ArtDefine_UnitMemberCombats SET TurnRateMax = 100*TurnRateMax WHERE MoveRate > 0;