diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 3427199..2481dd2 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -1776,7 +1776,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1776 | m_log.DebugFormat( | 1776 | m_log.DebugFormat( |
1777 | "[SCENE OBJECT GROUP]: Returning object {0} due to parcel autoreturn", | 1777 | "[SCENE OBJECT GROUP]: Returning object {0} due to parcel autoreturn", |
1778 | RootPart.UUID); | 1778 | RootPart.UUID); |
1779 | m_scene.AddReturn(OwnerID, Name, AbsolutePosition, "parcel autoreturn"); | 1779 | m_scene.AddReturn(OwnerID == GroupID ? LastOwnerID : OwnerID, Name, AbsolutePosition, "parcel autoreturn"); |
1780 | m_scene.DeRezObjects(null, new List<uint>() { RootPart.LocalId }, UUID.Zero, | 1780 | m_scene.DeRezObjects(null, new List<uint>() { RootPart.LocalId }, UUID.Zero, |
1781 | DeRezAction.Return, UUID.Zero); | 1781 | DeRezAction.Return, UUID.Zero); |
1782 | 1782 | ||