| 57 | {} |
| 58 | |
| 59 | NodeStatus SyncActionNode::executeTick() |
| 60 | { |
| 61 | auto stat = ActionNodeBase::executeTick(); |
| 62 | if(stat == NodeStatus::RUNNING) |
| 63 | { |
| 64 | throw LogicError("SyncActionNode MUST never return RUNNING"); |
| 65 | } |
| 66 | return stat; |
| 67 | } |
| 68 | |
| 69 | //------------------------------------- |
| 70 |
nothing calls this directly
no test coverage detected