Correctly reset the group ownership flag when a parcel is reclaimed.

0.6.5-rc1
Melanie Thielker 2009-05-12 13:48:55 +00:00
parent e1750c8c7c
commit 68da7d1a43
1 changed files with 1 additions and 0 deletions

View File

@ -1066,6 +1066,7 @@ namespace OpenSim.Region.CoreModules.World.Land
else
land.landData.OwnerID = m_scene.RegionInfo.MasterAvatarAssignedUUID;
land.landData.ClaimDate = Util.UnixTimeSinceEpoch();
land.landData.IsGroupOwned = false;
m_scene.Broadcast(SendParcelOverlay);
land.sendLandUpdateToClient(remote_client);
}