let some group related data to have a public set

This commit is contained in:
UbitUmarov
2016-07-26 17:34:59 +01:00
parent e766f9d20f
commit 13ae6dff18
5 changed files with 14 additions and 6 deletions

View File

@@ -570,16 +570,19 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
public UUID ActiveGroupId
{
get { return UUID.Zero; }
set {}
}
public string ActiveGroupName
{
get { return "IRCd User"; }
set {}
}
public ulong ActiveGroupPowers
{
get { return 0; }
set {}
}
public Dictionary<UUID, ulong> GetGroupPowers()

View File

@@ -591,11 +591,13 @@ namespace OpenSim.Region.OptionalModules.World.NPC
public string ActiveGroupName
{
get { return String.Empty; }
set { }
}
public ulong ActiveGroupPowers
{
get { return 0; }
set { }
}
public bool IsGroupMember(UUID groupID)