change parcel_owner_is_god configuration option from default from true to false, leaving only region_owner true by default
parent
b34652e9eb
commit
170acd7d67
|
@ -179,7 +179,7 @@ namespace OpenSim.Region.CoreModules.World.Permissions
|
|||
m_RegionManagerIsGod = Util.GetConfigVarFromSections<bool>(config, "region_manager_is_god",
|
||||
new string[] { "Startup", "Permissions" }, false);
|
||||
m_ParcelOwnerIsGod = Util.GetConfigVarFromSections<bool>(config, "parcel_owner_is_god",
|
||||
new string[] { "Startup", "Permissions" }, true);
|
||||
new string[] { "Startup", "Permissions" }, false);
|
||||
|
||||
m_SimpleBuildPermissions = Util.GetConfigVarFromSections<bool>(config, "simple_build_permissions",
|
||||
new string[] { "Startup", "Permissions" }, false);
|
||||
|
|
|
@ -400,9 +400,9 @@
|
|||
;; Allow region managers to assume god powers in regions they manage
|
||||
; region_manager_is_god = false
|
||||
|
||||
;# {parcel_owner_is_god} {} {Allow parcel owner gods} {true false} true
|
||||
;# {parcel_owner_is_god} {} {Allow parcel owner gods} {true false} false
|
||||
;; Allow parcel owners to assume god powers in their parcels
|
||||
; parcel_owner_is_god = true
|
||||
; parcel_owner_is_god = false
|
||||
|
||||
;# {simple_build_permissions} {} {Allow building in parcel by access list (no groups)} {true false} false
|
||||
;; More control over permissions
|
||||
|
|
|
@ -418,7 +418,7 @@
|
|||
; please note that this still doesn't duplicate SL, and is not intended to
|
||||
;region_owner_is_god = true
|
||||
;region_manager_is_god = false
|
||||
;parcel_owner_is_god = true
|
||||
;parcel_owner_is_god = false
|
||||
|
||||
; Control user types that are allowed to create new scripts
|
||||
; Only enforced if serviceside_object_permissions is true
|
||||
|
|
Loading…
Reference in New Issue