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.
This commit is contained in:
Melanie Thielker
2008-07-18 18:08:34 +00:00
parent 449c09234d
commit 76840906b5
2 changed files with 13 additions and 0 deletions

View File

@@ -34,5 +34,6 @@ namespace OpenSim.Region.Environment.Interfaces
public interface IEstateModule : IRegionModule
{
uint GetRegionFlags();
bool IsManager(LLUUID avatarID);
}
}