diff --git a/CodeWalker.Core/GameFiles/Resources/Bounds.cs b/CodeWalker.Core/GameFiles/Resources/Bounds.cs index 173b81d..2b9f594 100644 --- a/CodeWalker.Core/GameFiles/Resources/Bounds.cs +++ b/CodeWalker.Core/GameFiles/Resources/Bounds.cs @@ -3324,7 +3324,7 @@ namespace CodeWalker.GameFiles bvh.QuantumInverse = new Vector4(1.0f / bvh.Quantum.XYZ(), float.NaN); var root = new BVHBuilderNode(); - root.Items = items; + root.Items = items.ToList(); root.Build(itemThreshold); root.GatherNodes(nodes); root.GatherTrees(trees);