disable parcels access control if disabled at estate ( not that estate flag is still named TAXFREE
parent
d92ef598c5
commit
ea7dd150b1
|
@ -529,7 +529,7 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
if (avatar.IsChildAgent)
|
||||
return;
|
||||
|
||||
if ( m_allowedForcefulBans && m_showBansLines)
|
||||
if ( m_allowedForcefulBans && m_showBansLines && m_scene.RegionInfo.EstateSettings.TaxFree)
|
||||
SendOutNearestBanLine(avatar.ControllingClient);
|
||||
}
|
||||
|
||||
|
@ -579,6 +579,9 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
if(ldata.PassHours == 0)
|
||||
return;
|
||||
|
||||
if (!m_scene.RegionInfo.EstateSettings.TaxFree)
|
||||
return;
|
||||
|
||||
// don't allow passes on group owned until we can give money to groups
|
||||
if (ldata.IsGroupOwned)
|
||||
{
|
||||
|
@ -691,6 +694,9 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
if ((flags & 0x03) == 0)
|
||||
return; // we only have access and ban
|
||||
|
||||
if(!m_scene.RegionInfo.EstateSettings.TaxFree)
|
||||
return;
|
||||
|
||||
ILandObject land;
|
||||
lock (m_landList)
|
||||
{
|
||||
|
|
|
@ -541,6 +541,8 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
ParcelFlags.UseEstateVoiceChan);
|
||||
}
|
||||
|
||||
if(m_scene.RegionInfo.EstateSettings.TaxFree)
|
||||
{
|
||||
// don't allow passes on group owned until we can give money to groups
|
||||
if (!newData.IsGroupOwned && m_scene.Permissions.CanEditParcelProperties(remote_client.AgentId,this, GroupPowers.LandManagePasses, false))
|
||||
{
|
||||
|
@ -562,7 +564,7 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
ParcelFlags.DenyAnonymous |
|
||||
ParcelFlags.DenyAgeUnverified);
|
||||
}
|
||||
|
||||
}
|
||||
if (allowedDelta != (uint)ParcelFlags.None)
|
||||
{
|
||||
uint preserve = LandData.Flags & ~allowedDelta;
|
||||
|
@ -691,6 +693,9 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
{
|
||||
ExpireAccessList();
|
||||
|
||||
if (!m_scene.RegionInfo.EstateSettings.TaxFree) // region access control only
|
||||
return false;
|
||||
|
||||
if (m_scene.Permissions.IsAdministrator(avatar))
|
||||
return false;
|
||||
|
||||
|
@ -718,6 +723,9 @@ namespace OpenSim.Region.CoreModules.World.Land
|
|||
|
||||
public bool IsRestrictedFromLand(UUID avatar)
|
||||
{
|
||||
if (!m_scene.RegionInfo.EstateSettings.TaxFree) // estate access only
|
||||
return false;
|
||||
|
||||
if ((LandData.Flags & (uint) ParcelFlags.UseAccessList) == 0)
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Reference in New Issue