Plane: fixed chute release on low value of RC option

only release on flag high
fixes #18843
This commit is contained in:
Andrew Tridgell 2021-11-17 19:56:17 +11:00
parent 37a1b32944
commit 5a26b15652
1 changed files with 3 additions and 1 deletions

View File

@ -311,7 +311,9 @@ case AUX_FUNC::ARSPD_CALIBRATE:
case AUX_FUNC::PARACHUTE_RELEASE:
#if PARACHUTE == ENABLED
if (ch_flag == AuxSwitchPos::HIGH) {
plane.parachute_manual_release();
}
#endif
break;