diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index a137bca..b2e5dc3 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -1669,7 +1669,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1669 | List<SceneObjectGroup> childGroups = new List<SceneObjectGroup>(); | 1669 | List<SceneObjectGroup> childGroups = new List<SceneObjectGroup>(); |
1670 | 1670 | ||
1671 | // We do this in reverse to get the link order of the prims correct | 1671 | // We do this in reverse to get the link order of the prims correct |
1672 | for (int i = children.Count - 1; i >= 0; i--) | 1672 | for (int i = 0 ; i < children.Count ; i++) |
1673 | { | 1673 | { |
1674 | SceneObjectGroup child = children[i].ParentGroup; | 1674 | SceneObjectGroup child = children[i].ParentGroup; |
1675 | 1675 | ||