diff options
author | Justin Clark-Casey (justincc) | 2011-11-05 01:42:20 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-11-05 01:42:20 +0000 |
commit | 8105794121a04ab14e40d24e2615b5661103bd56 (patch) | |
tree | 0785eae15284cc1fe84d85b1104e1ade3a1f8d84 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | Fix NPC sitting for prims without a sit target. (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-8105794121a04ab14e40d24e2615b5661103bd56.zip opensim-SC_OLD-8105794121a04ab14e40d24e2615b5661103bd56.tar.gz opensim-SC_OLD-8105794121a04ab14e40d24e2615b5661103bd56.tar.bz2 opensim-SC_OLD-8105794121a04ab14e40d24e2615b5661103bd56.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
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 | ||