aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/IEstateModule.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-07-18 18:08:34 +0000
committerMelanie Thielker2008-07-18 18:08:34 +0000
commit76840906b596fb2c9e6225997c21923dc619953c (patch)
treec1017ee62d0d0472ae603e16ba395b95f7e62089 /OpenSim/Region/Environment/Interfaces/IEstateModule.cs
parentfixing copy & paste artefact. (diff)
downloadopensim-SC_OLD-76840906b596fb2c9e6225997c21923dc619953c.zip
opensim-SC_OLD-76840906b596fb2c9e6225997c21923dc619953c.tar.gz
opensim-SC_OLD-76840906b596fb2c9e6225997c21923dc619953c.tar.bz2
opensim-SC_OLD-76840906b596fb2c9e6225997c21923dc619953c.tar.xz
Patch adds bool IsManager(LLUUID) to IEstateModule.
Returns true whenever the LLUUID references a user who is either an EM or the region owner. Please note that ownership is region-scoped, while EM is estate-scoped.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Interfaces/IEstateModule.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IEstateModule.cs b/OpenSim/Region/Environment/Interfaces/IEstateModule.cs
index 070b804..bfe3591 100644
--- a/OpenSim/Region/Environment/Interfaces/IEstateModule.cs
+++ b/OpenSim/Region/Environment/Interfaces/IEstateModule.cs
@@ -34,5 +34,6 @@ namespace OpenSim.Region.Environment.Interfaces
34 public interface IEstateModule : IRegionModule 34 public interface IEstateModule : IRegionModule
35 { 35 {
36 uint GetRegionFlags(); 36 uint GetRegionFlags();
37 bool IsManager(LLUUID avatarID);
37 } 38 }
38} 39}