diff options
Diffstat (limited to 'OpenSim/Region')
3 files changed, 8 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 39f43ee..2026f78 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -421,9 +421,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
421 | } | 421 | } |
422 | public UUID AgentId { get { return m_agentId; } } | 422 | public UUID AgentId { get { return m_agentId; } } |
423 | public ISceneAgent SceneAgent { get; set; } | 423 | public ISceneAgent SceneAgent { get; set; } |
424 | public UUID ActiveGroupId { get { return m_activeGroupID; } private set { m_activeGroupID = value; } } | 424 | public UUID ActiveGroupId { get { return m_activeGroupID; } set { m_activeGroupID = value; } } |
425 | public string ActiveGroupName { get { return m_activeGroupName; } private set { m_activeGroupName = value; } } | 425 | public string ActiveGroupName { get { return m_activeGroupName; } set { m_activeGroupName = value; } } |
426 | public ulong ActiveGroupPowers { get { return m_activeGroupPowers; } private set { m_activeGroupPowers = value; } } | 426 | public ulong ActiveGroupPowers { get { return m_activeGroupPowers; } set { m_activeGroupPowers = value; } } |
427 | public bool IsGroupMember(UUID groupID) { return m_groupPowers.ContainsKey(groupID); } | 427 | public bool IsGroupMember(UUID groupID) { return m_groupPowers.ContainsKey(groupID); } |
428 | 428 | ||
429 | public int PingTimeMS | 429 | public int PingTimeMS |
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) |