aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
index 2c3e767..37f3caf 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
@@ -750,7 +750,7 @@ namespace OpenSim.Region.Environment.Scenes
750 // 750 //
751 if (IsSelected) 751 if (IsSelected)
752 { 752 {
753 m_scene.SendKiPrimitive(m_rootPart.LocalId); 753 m_scene.SendKillObject(m_rootPart.LocalId);
754 } 754 }
755 755
756 IsSelected = false; // fudge.... 756 IsSelected = false; // fudge....
@@ -985,7 +985,7 @@ namespace OpenSim.Region.Environment.Scenes
985 } 985 }
986 986
987 if (m_rootPart != null && part == m_rootPart) 987 if (m_rootPart != null && part == m_rootPart)
988 avatars[i].ControllingClient.SendKiPrimitive(m_regionHandle, part.LocalId); 988 avatars[i].ControllingClient.SendKillObject(m_regionHandle, part.LocalId);
989 } 989 }
990 } 990 }
991 991
@@ -1011,7 +1011,7 @@ namespace OpenSim.Region.Environment.Scenes
1011 } 1011 }
1012 1012
1013 if (m_rootPart != null && part == m_rootPart) 1013 if (m_rootPart != null && part == m_rootPart)
1014 avatars[i].ControllingClient.SendKiPrimitive(m_regionHandle, part.LocalId); 1014 avatars[i].ControllingClient.SendKillObject(m_regionHandle, part.LocalId);
1015 } 1015 }
1016 } 1016 }
1017 } 1017 }