Plane: integrate parachute check_sink_rate

this was previously part of the update function.  It can be run before or after the update
This commit is contained in:
Randy Mackay 2020-09-16 15:25:58 +09:00 committed by Andrew Tridgell
parent e2d41a3e04
commit 92f34a19d3

View File

@ -8,6 +8,7 @@ void Plane::parachute_check()
{ {
#if PARACHUTE == ENABLED #if PARACHUTE == ENABLED
parachute.update(); parachute.update();
parachute.check_sink_rate();
#endif #endif
} }