diff options
author | Melanie | 2010-10-07 02:16:36 +0100 |
---|---|---|
committer | Melanie | 2010-10-07 02:16:36 +0100 |
commit | 9a5d0984a5d4d416cf2e8560648aa94de916ad20 (patch) | |
tree | d0ae724cfa220d1b05195907d7ddf5593f666253 /OpenSim/Region/Framework | |
parent | Plumb the path for multiple object deletes (diff) | |
download | opensim-SC_OLD-9a5d0984a5d4d416cf2e8560648aa94de916ad20.zip opensim-SC_OLD-9a5d0984a5d4d416cf2e8560648aa94de916ad20.tar.gz opensim-SC_OLD-9a5d0984a5d4d416cf2e8560648aa94de916ad20.tar.bz2 opensim-SC_OLD-9a5d0984a5d4d416cf2e8560648aa94de916ad20.tar.xz |
Fix autoreturn to not return zero objects
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index f7a304f..5f00f84 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -1291,8 +1291,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
1291 | ILandObject parcel = m_scene.LandChannel.GetLandObject( | 1291 | ILandObject parcel = m_scene.LandChannel.GetLandObject( |
1292 | m_rootPart.GroupPosition.X, m_rootPart.GroupPosition.Y); | 1292 | m_rootPart.GroupPosition.X, m_rootPart.GroupPosition.Y); |
1293 | 1293 | ||
1294 | List<uint> returns = new List<uint>(); | ||
1295 | |||
1296 | if (parcel != null && parcel.LandData != null && | 1294 | if (parcel != null && parcel.LandData != null && |
1297 | parcel.LandData.OtherCleanTime != 0) | 1295 | parcel.LandData.OtherCleanTime != 0) |
1298 | { | 1296 | { |
@@ -1306,15 +1304,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
1306 | DetachFromBackup(); | 1304 | DetachFromBackup(); |
1307 | m_log.InfoFormat("[SCENE]: Returning object {0} due to parcel auto return", RootPart.UUID.ToString()); | 1305 | m_log.InfoFormat("[SCENE]: Returning object {0} due to parcel auto return", RootPart.UUID.ToString()); |
1308 | m_scene.AddReturn(OwnerID, Name, AbsolutePosition, "parcel auto return"); | 1306 | m_scene.AddReturn(OwnerID, Name, AbsolutePosition, "parcel auto return"); |
1309 | returns.Add(RootPart.LocalId); | 1307 | m_scene.DeRezObjects(null, new List<uint>() { RootPart.LocalId }, UUID.Zero, |
1308 | DeRezAction.Return, UUID.Zero); | ||
1310 | 1309 | ||
1311 | return; | 1310 | return; |
1312 | } | 1311 | } |
1313 | } | 1312 | } |
1314 | } | 1313 | } |
1315 | |||
1316 | m_scene.DeRezObjects(null, returns, UUID.Zero, | ||
1317 | DeRezAction.Return, UUID.Zero); | ||
1318 | } | 1314 | } |
1319 | 1315 | ||
1320 | if (HasGroupChanged) | 1316 | if (HasGroupChanged) |