change IgnoreEstatePaymentAccessControl and IgnoreEstateMinorAccessControl default to true, since this require flags to be set on dbs, and enforcing was not working well

master
UbitUmarov 2020-01-11 16:16:49 +00:00
parent 29a6c1d0c8
commit b9e74dd504
2 changed files with 6 additions and 6 deletions

View File

@ -93,8 +93,8 @@ namespace OpenSim.Region.CoreModules.World.Estate
if (config != null)
{
AllowRegionRestartFromClient = config.GetBoolean("AllowRegionRestartFromClient", true);
m_ignoreEstateMinorAccessControl = config.GetBoolean("IgnoreEstateMinorAccessControl", false);
m_ignoreEstatePaymentAccessControl = config.GetBoolean("IgnoreEstatePaymentAccessControl", false);
m_ignoreEstateMinorAccessControl = config.GetBoolean("IgnoreEstateMinorAccessControl", true);
m_ignoreEstatePaymentAccessControl = config.GetBoolean("IgnoreEstatePaymentAccessControl", true);
}
}

View File

@ -553,11 +553,11 @@
; Default is true
AllowRegionRestartFromClient = true
; ignore Minors access control. Default false
;IgnoreEstateMinorAccessControl = false;
; ignore Minors access control. Default true
;IgnoreEstateMinorAccessControl = true;
; ignore payment info control. Default false
;IgnoreEstatePaymentAccessControl = false
; ignore payment info control. Default true
;IgnoreEstatePaymentAccessControl = true
[UserProfiles]