aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index e61e856..fb2d29b 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -5983,7 +5983,10 @@ namespace OpenSim.Region.Framework.Scenes
5983 { 5983 {
5984 List<uint> ids = new List<uint>(m_attachments.Count + 1); 5984 List<uint> ids = new List<uint>(m_attachments.Count + 1);
5985 foreach (SceneObjectGroup sog in m_attachments) 5985 foreach (SceneObjectGroup sog in m_attachments)
5986 {
5987 p.ControllingClient.SendPartFullUpdate(sog.RootPart, LocalId + 1);
5986 ids.Add(sog.RootPart.LocalId); 5988 ids.Add(sog.RootPart.LocalId);
5989 }
5987 5990
5988 ids.Add(LocalId); 5991 ids.Add(LocalId);
5989 p.ControllingClient.SendKillObject(ids); 5992 p.ControllingClient.SendKillObject(ids);