aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-29 01:33:10 +0000
committerMelanie Thielker2008-11-29 01:33:10 +0000
commit287c724b5585b87822da4ba92f8a1c55b7d33a67 (patch)
tree56e869fe4d9f152c9926ff50f6f1b7ad02c3a442 /OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
parent* minor: Stop startup complaining about a missing MyAssetSet.xml all the time... (diff)
downloadopensim-SC_OLD-287c724b5585b87822da4ba92f8a1c55b7d33a67.zip
opensim-SC_OLD-287c724b5585b87822da4ba92f8a1c55b7d33a67.tar.gz
opensim-SC_OLD-287c724b5585b87822da4ba92f8a1c55b7d33a67.tar.bz2
opensim-SC_OLD-287c724b5585b87822da4ba92f8a1c55b7d33a67.tar.xz
A try to better attachment crossing.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
index 8a6f06c..fabf276 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
@@ -592,7 +592,8 @@ namespace OpenSim.Region.Environment.Scenes
592 m_scene = scene; 592 m_scene = scene;
593 RegionHandle = m_scene.RegionInfo.RegionHandle; 593 RegionHandle = m_scene.RegionInfo.RegionHandle;
594 594
595 m_rootPart.ParentID = 0; 595 if (m_rootPart.Shape.PCode != 9 || m_rootPart.Shape.State == 0)
596 m_rootPart.ParentID = 0;
596 if (m_rootPart.LocalId==0) 597 if (m_rootPart.LocalId==0)
597 m_rootPart.LocalId = m_scene.AllocateLocalId(); 598 m_rootPart.LocalId = m_scene.AllocateLocalId();
598 599
@@ -921,9 +922,10 @@ namespace OpenSim.Region.Environment.Scenes
921 public void SetRootPart(SceneObjectPart part) 922 public void SetRootPart(SceneObjectPart part)
922 { 923 {
923 part.SetParent(this); 924 part.SetParent(this);
924 part.ParentID = 0;
925 part.LinkNum = 0;
926 m_rootPart = part; 925 m_rootPart = part;
926 if (!IsAttachment)
927 part.ParentID = 0;
928 part.LinkNum = 0;
927 929
928 // No locking required since the SOG should not be in the scene yet - one can't change root parts after 930 // No locking required since the SOG should not be in the scene yet - one can't change root parts after
929 // the scene object has been attached to the scene 931 // the scene object has been attached to the scene