Copter: add missing disarm-on-land parameter to rtl_land_run

Always disarm
This commit is contained in:
Peter Barker 2017-11-07 08:54:56 +11:00 committed by Francisco Ferreira
parent 5b793252ed
commit ef00978662

View File

@ -52,7 +52,7 @@ void Copter::smart_rtl_run()
rtl_descent_run(); // Re-using the descend method from normal rtl mode.
break;
case SmartRTL_Land:
rtl_land_run(); // Re-using the land method from normal rtl mode.
rtl_land_run(true); // Re-using the land method from normal rtl mode.
break;
}
}