Skip to content

Commit

Permalink
修复 情景节点解析
Browse files Browse the repository at this point in the history
  • Loading branch information
MakesYT committed May 23, 2024
1 parent 986a78d commit 63bd9cd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Core/SDKs/CustomScenario/CustomScenario.cs
Original file line number Diff line number Diff line change
Expand Up @@ -633,16 +633,18 @@ private void ParsePointItem(Dictionary<PointItem, Thread?> threads, PointItem no
default:
{
var userInputConnector = nowPointItem.Input.FirstOrDefault();
if (userInputConnector.Title == "流输入")
{
userInputConnector = nowPointItem.Input[1];
}


if (userInputConnector is null)
{
break;
}

if (userInputConnector.Title == "流输入")
{
userInputConnector = nowPointItem.Input[1];
}

var userInputData = userInputConnector.InputObject;
if (userInputData is null or "")
{
Expand Down

0 comments on commit 63bd9cd

Please sign in to comment.