diff options
author | UbitUmarov | 2016-07-26 17:34:59 +0100 |
---|---|---|
committer | UbitUmarov | 2016-07-26 17:34:59 +0100 |
commit | 13ae6dff18a507791b3e05eaef74c2f2066cdfec (patch) | |
tree | da53ba5a6df901b5439267d3cc92ed196946a9f9 /OpenSim/Region/ClientStack/Linden/UDP | |
parent | get a copy of current clientView group powers (diff) | |
download | opensim-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/ClientStack/Linden/UDP')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 6 |
1 files changed, 3 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 |