diff options
Diffstat (limited to 'OpenSim/Region')
3 files changed, 18 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) |
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index f34dbe8..ade30a6 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -582,6 +582,11 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
582 | get { return 0; } | 582 | get { return 0; } |
583 | } | 583 | } |
584 | 584 | ||
585 | public Dictionary<UUID, ulong> GetGroupPowers() | ||
586 | { | ||
587 | return new Dictionary<UUID, ulong>(); | ||
588 | } | ||
589 | |||
585 | public ulong GetGroupPowers(UUID groupID) | 590 | public ulong GetGroupPowers(UUID groupID) |
586 | { | 591 | { |
587 | return 0; | 592 | return 0; |
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index bdac6aa..7cfa360 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -603,6 +603,11 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
603 | return (m_hostGroupID == groupID); | 603 | return (m_hostGroupID == groupID); |
604 | } | 604 | } |
605 | 605 | ||
606 | public Dictionary<UUID, ulong> GetGroupPowers() | ||
607 | { | ||
608 | return new Dictionary<UUID, ulong>(); | ||
609 | } | ||
610 | |||
606 | public ulong GetGroupPowers(UUID groupID) | 611 | public ulong GetGroupPowers(UUID groupID) |
607 | { | 612 | { |
608 | return 0; | 613 | return 0; |