aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 42ce61e..962e5e1 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3310,7 +3310,11 @@ namespace OpenSim.Region.Framework.Scenes
3310 } 3310 }
3311 deleteIDs.Add(localID); 3311 deleteIDs.Add(localID);
3312 } 3312 }
3313 ForEachClient(delegate(IClientAPI client) { client.SendKillObject(m_regionHandle, deleteIDs); }); 3313
3314 ForEachClient(delegate(IClientAPI client)
3315 {
3316 client.SendKillObject(m_regionHandle, deleteIDs);
3317 });
3314 } 3318 }
3315 3319
3316 #endregion 3320 #endregion