aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules
diff options
context:
space:
mode:
authorUbitUmarov2016-07-26 17:34:59 +0100
committerUbitUmarov2016-07-26 17:34:59 +0100
commit13ae6dff18a507791b3e05eaef74c2f2066cdfec (patch)
treeda53ba5a6df901b5439267d3cc92ed196946a9f9 /OpenSim/Region/OptionalModules
parent get a copy of current clientView group powers (diff)
downloadopensim-SC_OLD-13ae6dff18a507791b3e05eaef74c2f2066cdfec.zip
opensim-SC_OLD-13ae6dff18a507791b3e05eaef74c2f2066cdfec.tar.gz
opensim-SC_OLD-13ae6dff18a507791b3e05eaef74c2f2066cdfec.tar.bz2
opensim-SC_OLD-13ae6dff18a507791b3e05eaef74c2f2066cdfec.tar.xz
let some group related data to have a public set
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs3
-rw-r--r--OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs2
2 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
index ade30a6..7c08d08 100644
--- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs
@@ -570,16 +570,19 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server
570 public UUID ActiveGroupId 570 public UUID ActiveGroupId
571 { 571 {
572 get { return UUID.Zero; } 572 get { return UUID.Zero; }
573 set {}
573 } 574 }
574 575
575 public string ActiveGroupName 576 public string ActiveGroupName
576 { 577 {
577 get { return "IRCd User"; } 578 get { return "IRCd User"; }
579 set {}
578 } 580 }
579 581
580 public ulong ActiveGroupPowers 582 public ulong ActiveGroupPowers
581 { 583 {
582 get { return 0; } 584 get { return 0; }
585 set {}
583 } 586 }
584 587
585 public Dictionary<UUID, ulong> GetGroupPowers() 588 public Dictionary<UUID, ulong> GetGroupPowers()
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
index 7cfa360..a84520fe 100644
--- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
+++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
@@ -591,11 +591,13 @@ namespace OpenSim.Region.OptionalModules.World.NPC
591 public string ActiveGroupName 591 public string ActiveGroupName
592 { 592 {
593 get { return String.Empty; } 593 get { return String.Empty; }
594 set { }
594 } 595 }
595 596
596 public ulong ActiveGroupPowers 597 public ulong ActiveGroupPowers
597 { 598 {
598 get { return 0; } 599 get { return 0; }
600 set { }
599 } 601 }
600 602
601 public bool IsGroupMember(UUID groupID) 603 public bool IsGroupMember(UUID groupID)