Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d2ea00 commit c1acda0Copy full SHA for c1acda0
src/controls/reactive_fallback.cpp
@@ -29,8 +29,9 @@ NodeStatus ReactiveFallback::tick()
29
{
30
case NodeStatus::RUNNING:
31
32
- running_count++;
33
- }break;
+ haltChildren(0);
+ return NodeStatus::RUNNING;
34
+ }
35
36
case NodeStatus::FAILURE:
37
src/controls/reactive_sequence.cpp
@@ -32,7 +32,8 @@ NodeStatus ReactiveSequence::tick()
running_count++;
haltChildren(index+1);
return NodeStatus::RUNNING;
+
38
39
haltChildren(0);
0 commit comments