aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden
diff options
context:
space:
mode:
authorUbitUmarov2016-07-26 16:54:04 +0100
committerUbitUmarov2016-07-26 16:54:04 +0100
commite766f9d20f80425948f5cfe9204cdf85908e77fa (patch)
tree17e55e4221a7f5cfe446896a804ace939376600c /OpenSim/Region/ClientStack/Linden
parentcleanup some code (diff)
downloadopensim-SC_OLD-e766f9d20f80425948f5cfe9204cdf85908e77fa.zip
opensim-SC_OLD-e766f9d20f80425948f5cfe9204cdf85908e77fa.tar.gz
opensim-SC_OLD-e766f9d20f80425948f5cfe9204cdf85908e77fa.tar.bz2
opensim-SC_OLD-e766f9d20f80425948f5cfe9204cdf85908e77fa.tar.xz
get a copy of current clientView group powers
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 68fe8d9..39f43ee 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -5782,6 +5782,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5782 OutPacket(packet, ThrottleOutPacketType.Task); 5782 OutPacket(packet, ThrottleOutPacketType.Task);
5783 } 5783 }
5784 5784
5785 public Dictionary<UUID, ulong> GetGroupPowers()
5786 {
5787 lock(m_groupPowers)
5788 {
5789 return new Dictionary<UUID, ulong>(m_groupPowers);
5790 }
5791 }
5792
5785 public ulong GetGroupPowers(UUID groupID) 5793 public ulong GetGroupPowers(UUID groupID)
5786 { 5794 {
5787 if (groupID == ActiveGroupId) 5795 if (groupID == ActiveGroupId)