limboai/bt/actions/bt_action.cpp

23 lines
664 B
C++
Raw Normal View History

/**
* bt_action.cpp
* =============================================================================
* Copyright 2021-2023 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
2022-08-28 10:54:34 +00:00
#include "bt_action.h"
String BTAction::get_configuration_warning() const {
String warning = BTTask::get_configuration_warning();
if (!warning.is_empty()) {
2022-08-28 10:54:34 +00:00
warning += "\n";
}
if (get_child_count() != 0) {
warning += "Action can't have child tasks.\n";
}
return warning;
}