add a public SetGroupPowers to clientView

This commit is contained in:
UbitUmarov
2016-07-26 17:57:14 +01:00
parent 13ae6dff18
commit 1a8a8e16ef
5 changed files with 18 additions and 1 deletions

View File

@@ -5790,6 +5790,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
}
}
public void SetGroupPowers(Dictionary<UUID, ulong> powers)
{
lock(m_groupPowers)
{
m_groupPowers.Clear();
m_groupPowers = powers;
}
}
public ulong GetGroupPowers(UUID groupID)
{
if (groupID == ActiveGroupId)