diff options
author | Melanie Thielker | 2009-04-28 22:53:10 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-28 22:53:10 +0000 |
commit | 7e972b304b08619884d9581e126a7722800d20b9 (patch) | |
tree | 8f76467158996e5820abb77af50b0805380aa2bc /OpenSim/Framework | |
parent | * Get rid of some extraneous debug log output from the last commit (diff) | |
download | opensim-SC_OLD-7e972b304b08619884d9581e126a7722800d20b9.zip opensim-SC_OLD-7e972b304b08619884d9581e126a7722800d20b9.tar.gz opensim-SC_OLD-7e972b304b08619884d9581e126a7722800d20b9.tar.bz2 opensim-SC_OLD-7e972b304b08619884d9581e126a7722800d20b9.tar.xz |
Let estate owners and managers enter nonpublic estates unconditionally.
Let gods go to nonpublic estates as well.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/EstateSettings.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/EstateSettings.cs b/OpenSim/Framework/EstateSettings.cs index 14bb9ef..4f34757 100644 --- a/OpenSim/Framework/EstateSettings.cs +++ b/OpenSim/Framework/EstateSettings.cs | |||
@@ -360,6 +360,9 @@ namespace OpenSim.Framework | |||
360 | 360 | ||
361 | public bool HasAccess(UUID user) | 361 | public bool HasAccess(UUID user) |
362 | { | 362 | { |
363 | if (IsEstateManager(user)) | ||
364 | return true; | ||
365 | |||
363 | return l_EstateAccess.Contains(user); | 366 | return l_EstateAccess.Contains(user); |
364 | } | 367 | } |
365 | 368 | ||