aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-04-21 01:51:57 +0100
committerJustin Clark-Casey (justincc)2012-04-21 01:51:57 +0100
commitd5c724e5b8cc15ce278b80070238e72a2e4ea0e8 (patch)
tree76cda579e96266004f6a4f59000329e83f2a23be /OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
parentFix a bug where linking a non-physical prim with a physical prim as root woul... (diff)
downloadopensim-SC_OLD-d5c724e5b8cc15ce278b80070238e72a2e4ea0e8.zip
opensim-SC_OLD-d5c724e5b8cc15ce278b80070238e72a2e4ea0e8.tar.gz
opensim-SC_OLD-d5c724e5b8cc15ce278b80070238e72a2e4ea0e8.tar.bz2
opensim-SC_OLD-d5c724e5b8cc15ce278b80070238e72a2e4ea0e8.tar.xz
Add regression test for prim status when root prim in a new linkset is non-physical
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index d2cd37d..1592131 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -1708,7 +1708,7 @@ namespace OpenSim.Region.Framework.Scenes
1708 { 1708 {
1709 if (ParentGroup.Scene == null) 1709 if (ParentGroup.Scene == null)
1710 return; 1710 return;
1711 1711
1712 if (!ParentGroup.Scene.PhysicalPrims && UsePhysics) 1712 if (!ParentGroup.Scene.PhysicalPrims && UsePhysics)
1713 return; 1713 return;
1714 1714