aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 40e7471..b284ed4 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -3421,9 +3421,10 @@ if (m_shape != null) {
3421 RotationOffset, 3421 RotationOffset,
3422 UsePhysics); 3422 UsePhysics);
3423 3423
3424 if (PhysActor != null) 3424 PhysicsActor pa = PhysActor;
3425 if (pa != null)
3425 { 3426 {
3426 PhysActor.LocalID = LocalId; 3427 pa.LocalID = LocalId;
3427 DoPhysicsPropertyUpdate(UsePhysics, true); 3428 DoPhysicsPropertyUpdate(UsePhysics, true);
3428 if (m_parentGroup != null) 3429 if (m_parentGroup != null)
3429 { 3430 {