change IgnoreEstatePaymentAccessControl and IgnoreEstateMinorAccessControl default to true, since this require flags to be set on dbs, and enforcing was not working well
parent
29a6c1d0c8
commit
b9e74dd504
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue