From b94cc843b0ac9bfad15aa10717a0af676fc576a2 Mon Sep 17 00:00:00 2001 From: StellarWolfEntertainment <142454885+StellarWolfEntertainment@users.noreply.github.com> Date: Sat, 19 Aug 2023 15:37:51 -0600 Subject: [PATCH] Fixed bug in NodePort.cs MoveConnections did not move the connections to another port, added connections to self, then cleared connections from self. --- Scripts/NodePort.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/NodePort.cs b/Scripts/NodePort.cs index 1fbc62f..e225121 100644 --- a/Scripts/NodePort.cs +++ b/Scripts/NodePort.cs @@ -383,7 +383,7 @@ namespace XNode { for (int i = 0; i < connectionCount; i++) { PortConnection connection = targetPort.connections[i]; NodePort otherPort = connection.Port; - Connect(otherPort); + targetPort.Connect(otherPort); } ClearConnections(); }