From c06a271600cb69ec10cd70bcac0c0ae35da8c53f Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 7 Apr 2020 19:33:17 +0900 Subject: [PATCH] Actually search the part's nodes for non-top/bottom It does help if one fetches the node before testing it. --- Source/DisposablePad/DisposablePad.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/DisposablePad/DisposablePad.cs b/Source/DisposablePad/DisposablePad.cs index 167470de..d90a491b 100644 --- a/Source/DisposablePad/DisposablePad.cs +++ b/Source/DisposablePad/DisposablePad.cs @@ -226,6 +226,7 @@ AttachNode FindNode (Part p) } } for (int i = 0; i < p.attachNodes.Count; i++) { + node = p.attachNodes[i]; if (node.attachedPart == null) { return node; }