aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
diff options
context:
space:
mode:
authorMelanie2010-05-07 00:50:26 +0100
committerMelanie2010-05-07 00:50:26 +0100
commit907fce8406ea4db252a53ed6f0963d08ec4eff5a (patch)
treedc56fc09784172d3b8292bfa8bfd315107cdfb5f /OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
parentRevert "Patch from mcortez: Update groups, add ALPHA Siman grid connector for... (diff)
downloadopensim-SC_OLD-907fce8406ea4db252a53ed6f0963d08ec4eff5a.zip
opensim-SC_OLD-907fce8406ea4db252a53ed6f0963d08ec4eff5a.tar.gz
opensim-SC_OLD-907fce8406ea4db252a53ed6f0963d08ec4eff5a.tar.bz2
opensim-SC_OLD-907fce8406ea4db252a53ed6f0963d08ec4eff5a.tar.xz
Remove land that is being abandoned from search. This is now consistent with
sale and reclaim.
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
index a691acd..32be160 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
@@ -1166,6 +1166,7 @@ namespace OpenSim.Region.CoreModules.World.Land
1166 land.LandData.OwnerID = m_scene.RegionInfo.EstateSettings.EstateOwner; 1166 land.LandData.OwnerID = m_scene.RegionInfo.EstateSettings.EstateOwner;
1167 land.LandData.GroupID = UUID.Zero; 1167 land.LandData.GroupID = UUID.Zero;
1168 land.LandData.IsGroupOwned = false; 1168 land.LandData.IsGroupOwned = false;
1169 land.LandData.Flags &= ~(uint) (ParcelFlags.ForSale | ParcelFlags.ForSaleObjects | ParcelFlags.SellParcelObjects | ParcelFlags.ShowDirectory);
1169 m_scene.ForEachClient(SendParcelOverlay); 1170 m_scene.ForEachClient(SendParcelOverlay);
1170 land.SendLandUpdateToClient(true, remote_client); 1171 land.SendLandUpdateToClient(true, remote_client);
1171 } 1172 }