diff --git a/Source/ComboInput/Private/Nodes/ComboActionGraphNode_ActionNode.cpp b/Source/ComboInput/Private/Nodes/ComboActionGraphNode_ActionNode.cpp index 97d47bf..5993ede 100644 --- a/Source/ComboInput/Private/Nodes/ComboActionGraphNode_ActionNode.cpp +++ b/Source/ComboInput/Private/Nodes/ComboActionGraphNode_ActionNode.cpp @@ -26,7 +26,7 @@ UComboActionGraphNode_ActionNode::UComboActionGraphNode_ActionNode() this->bAutoStarts = false; - this->MaxChildrenNodes = 1; + this->MaxChildrenNodes = -1; } void UComboActionGraphNode_ActionNode::PreProcessNode(const TScriptInterface &Manager) diff --git a/Source/ComboInput/Private/Nodes/ComboActionGraphNode_StartNode.cpp b/Source/ComboInput/Private/Nodes/ComboActionGraphNode_StartNode.cpp index 15564b7..80e66a0 100644 --- a/Source/ComboInput/Private/Nodes/ComboActionGraphNode_StartNode.cpp +++ b/Source/ComboInput/Private/Nodes/ComboActionGraphNode_StartNode.cpp @@ -23,7 +23,6 @@ UComboActionGraphNode_StartNode::UComboActionGraphNode_StartNode() this->NodeTooltipText = LOCTEXT("ComboActionGraphNode_CompleteTooltip", "* This Node will be added to the graph automatically.\n* This Node cannot be created manually.\n* This Node cannot be deleted.\n* Does not implement any logic."); #endif - // TODO: Once there are Conditional Decorators, this will be replaced this->MaxChildrenNodes = -1; }