diff options
author | UbitUmarov | 2014-08-25 13:58:50 +0100 |
---|---|---|
committer | UbitUmarov | 2014-08-25 13:58:50 +0100 |
commit | 385fcbb75ea9456997194c8fbe155cff41e95605 (patch) | |
tree | 00f6672dec8c4506ea727827c9a9a154e17cdf58 | |
parent | put back the kills on tp where they belong (diff) | |
download | opensim-SC-385fcbb75ea9456997194c8fbe155cff41e95605.zip opensim-SC-385fcbb75ea9456997194c8fbe155cff41e95605.tar.gz opensim-SC-385fcbb75ea9456997194c8fbe155cff41e95605.tar.bz2 opensim-SC-385fcbb75ea9456997194c8fbe155cff41e95605.tar.xz |
*test* send kills and hack
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 3 |
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); |