aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs13
1 files changed, 9 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 2324f7a..c7b38a1 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -5056,7 +5056,7 @@ namespace OpenSim.Region.Framework.Scenes
5056 { 5056 {
5057 ForEachSOG(delegate (SceneObjectGroup grp) 5057 ForEachSOG(delegate (SceneObjectGroup grp)
5058 { 5058 {
5059 if (grp.RootPart.Shape.State != 0 || objectsToDelete.Contains(grp)) 5059 if (grp.RootPart.Shape.State != 0 && (!objectsToDelete.Contains(grp)))
5060 { 5060 {
5061 UUID agentID = grp.OwnerID; 5061 UUID agentID = grp.OwnerID;
5062 if (agentID == UUID.Zero) 5062 if (agentID == UUID.Zero)
@@ -5075,10 +5075,15 @@ namespace OpenSim.Region.Framework.Scenes
5075 }); 5075 });
5076 } 5076 }
5077 5077
5078 foreach (SceneObjectGroup grp in objectsToDelete) 5078 if (objectsToDelete.Count > 0)
5079 { 5079 {
5080 m_log.InfoFormat("[SCENE]: Deleting dropped attachment {0} of user {1}", grp.UUID, grp.OwnerID); 5080 m_log.DebugFormat("[SCENE]: Starting delete of {0} dropped attachments", objectsToDelete.Count);
5081 DeleteSceneObject(grp, true); 5081 foreach (SceneObjectGroup grp in objectsToDelete)
5082 {
5083 m_log.InfoFormat("[SCENE]: Deleting dropped attachment {0} of user {1}", grp.UUID, grp.OwnerID);
5084 DeleteSceneObject(grp, true);
5085 }
5086 m_log.Debug("[SCENE]: Finished dropped attachment deletion");
5082 } 5087 }
5083 } 5088 }
5084 } 5089 }