aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-14 14:43:46 +0000
committerJustin Clarke Casey2008-10-14 14:43:46 +0000
commit3b9400bceaa9389489951b31322204bb26cab076 (patch)
treec818f31ef12f973e15502ec1d0eb8b8c7bd97738 /OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
parent* Make KillObjectPackets reliable (diff)
downloadopensim-SC_OLD-3b9400bceaa9389489951b31322204bb26cab076.zip
opensim-SC_OLD-3b9400bceaa9389489951b31322204bb26cab076.tar.gz
opensim-SC_OLD-3b9400bceaa9389489951b31322204bb26cab076.tar.bz2
opensim-SC_OLD-3b9400bceaa9389489951b31322204bb26cab076.tar.xz
* refactor: rename SendKiPrimitive to SendKillObject since this appears more descriptive of what it actually does
Diffstat (limited to '')
-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 }