Browse Source

AP_Scripting: correct script restart send_text message

apm_2208
Peter Barker 3 years ago committed by Peter Hall
parent
commit
55517450bc
  1. 2
      libraries/AP_Scripting/AP_Scripting.cpp

2
libraries/AP_Scripting/AP_Scripting.cpp

@ -247,7 +247,7 @@ void AP_Scripting::thread(void) { @@ -247,7 +247,7 @@ void AP_Scripting::thread(void) {
}
// must be enabled to get this far
if (cleared || _restart) {
gcs().send_text(MAV_SEVERITY_CRITICAL, "Scripting restated");
gcs().send_text(MAV_SEVERITY_CRITICAL, "Scripting restarted");
break;
}
if ((_debug_options.get() & uint8_t(lua_scripts::DebugLevel::NO_SCRIPTS_TO_RUN)) != 0) {

Loading…
Cancel
Save