aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules
diff options
context:
space:
mode:
authorUbitUmarov2016-07-26 17:57:14 +0100
committerUbitUmarov2016-07-26 17:57:14 +0100
commit1a8a8e16efae4bdfc5cbd5108171737ceaaa4c67 (patch)
treeca97e43d56625d9c9947a510d587fec523280b53 /OpenSim/Region/OptionalModules
parent let some group related data to have a public set (diff)
downloadopensim-SC_OLD-1a8a8e16efae4bdfc5cbd5108171737ceaaa4c67.zip
opensim-SC_OLD-1a8a8e16efae4bdfc5cbd5108171737ceaaa4c67.tar.gz
opensim-SC_OLD-1a8a8e16efae4bdfc5cbd5108171737ceaaa4c67.tar.bz2
opensim-SC_OLD-1a8a8e16efae4bdfc5cbd5108171737ceaaa4c67.tar.xz
add a public SetGroupPowers to clientView
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs4
-rw-r--r--OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs2
2 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
index 7c08d08..50be3ac 100644
--- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
@@ -589,7 +589,9 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
589 { 589 {
590 return new Dictionary<UUID, ulong>(); 590 return new Dictionary<UUID, ulong>();
591 } 591 }
592 592
593 public void SetGroupPowers(Dictionary<UUID, ulong> powers) { }
594
593 public ulong GetGroupPowers(UUID groupID) 595 public ulong GetGroupPowers(UUID groupID)
594 { 596 {
595 return 0; 597 return 0;
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
index a84520fe..4275192 100644
--- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
+++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
@@ -610,6 +610,8 @@ namespace OpenSim.Region.OptionalModules.World.NPC
610 return new Dictionary<UUID, ulong>(); 610 return new Dictionary<UUID, ulong>();
611 } 611 }
612 612
613 public void SetGroupPowers(Dictionary<UUID, ulong> powers) { }
614
613 public ulong GetGroupPowers(UUID groupID) 615 public ulong GetGroupPowers(UUID groupID)
614 { 616 {
615 return 0; 617 return 0;