diff --git a/src/Speckle.Objects/Other/Revit/RevitInstance.cs b/src/Speckle.Objects/Other/Revit/RevitInstance.cs index 98614d75..967eb338 100644 --- a/src/Speckle.Objects/Other/Revit/RevitInstance.cs +++ b/src/Speckle.Objects/Other/Revit/RevitInstance.cs @@ -19,7 +19,7 @@ public class RevitInstance : Instance protected override IEnumerable GetTransformableGeometry() { - var allChildren = typedDefinition.elements ?? new List(); + var allChildren = typedDefinition.elements ?? new List(); // TODO: this is a bug, should be copying elements list instead of using the reference if (typedDefinition.displayValue.Count != 0) { allChildren.AddRange(typedDefinition.displayValue);