From 8412a3875e4126481f58c87e143204e18b7e50ae Mon Sep 17 00:00:00 2001 From: Lisias T Date: Fri, 4 Aug 2023 00:42:52 -0300 Subject: [PATCH] Fix issue with Attachment Nodes being displaced when the part is scaled **after** chaning its variant. For https://github.com/TweakScale/TweakScale/issues/307 --- Source/PartDB13x/PartDB/StandardPartScaler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PartDB13x/PartDB/StandardPartScaler.cs b/Source/PartDB13x/PartDB/StandardPartScaler.cs index e2ab1d44..4387b7a5 100644 --- a/Source/PartDB13x/PartDB/StandardPartScaler.cs +++ b/Source/PartDB13x/PartDB/StandardPartScaler.cs @@ -35,7 +35,7 @@ public StandardPartScaler(Part prefab, Part part, ScaleType scaleType, TweakScal protected override void DoScale() { base.DoScale(); - this.ScalePart(true, false); + this.ScalePart(true, true); this.ScaleDragCubes(false); this.OnChange(); }