diff --git a/core/src/net/sf/openrocket/rocketcomponent/FinSet.java b/core/src/net/sf/openrocket/rocketcomponent/FinSet.java index 79dc0c4a3..f96681335 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/FinSet.java +++ b/core/src/net/sf/openrocket/rocketcomponent/FinSet.java @@ -1009,7 +1009,8 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona * but the minor performance hit is not worth the code complexity of dealing with. */ public Coordinate[] getFinPointsWithTab() { - return combineCurves(getFinPoints(), getTabPoints()); + Coordinate[] temp = combineCurves(getFinPoints(), getRootPoints()); + return combineCurves(temp, getTabPoints()); } @Override