get a copy of current clientView group powers

This commit is contained in:
UbitUmarov
2016-07-26 16:54:04 +01:00
parent 3f0d84c28b
commit e766f9d20f
5 changed files with 25 additions and 0 deletions

View File

@@ -5782,6 +5782,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
OutPacket(packet, ThrottleOutPacketType.Task);
}
public Dictionary<UUID, ulong> GetGroupPowers()
{
lock(m_groupPowers)
{
return new Dictionary<UUID, ulong>(m_groupPowers);
}
}
public ulong GetGroupPowers(UUID groupID)
{
if (groupID == ActiveGroupId)