diff options
author | UbitUmarov | 2017-05-21 05:16:18 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-21 05:16:18 +0100 |
commit | 7c3200b393a0ec9bb324dc0f862206987974cd74 (patch) | |
tree | f3df43c1b4bdc370655981edaefda22b8a0cfdd8 /OpenSim | |
parent | remove LongPoll type and queues. Events should now have reduced latency also.... (diff) | |
download | opensim-SC_OLD-7c3200b393a0ec9bb324dc0f862206987974cd74.zip opensim-SC_OLD-7c3200b393a0ec9bb324dc0f862206987974cd74.tar.gz opensim-SC_OLD-7c3200b393a0ec9bb324dc0f862206987974cd74.tar.bz2 opensim-SC_OLD-7c3200b393a0ec9bb324dc0f862206987974cd74.tar.xz |
cross avatar group info also if title is empty string
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 474378d..55ccb0a 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -4687,7 +4687,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
4687 | cAgent.agentCOF = COF; | 4687 | cAgent.agentCOF = COF; |
4688 | cAgent.ActiveGroupID = ControllingClient.ActiveGroupId; | 4688 | cAgent.ActiveGroupID = ControllingClient.ActiveGroupId; |
4689 | cAgent.ActiveGroupName = ControllingClient.ActiveGroupName; | 4689 | cAgent.ActiveGroupName = ControllingClient.ActiveGroupName; |
4690 | cAgent.ActiveGroupTitle = Grouptitle; | 4690 | if(Grouptitle == null) |
4691 | cAgent.ActiveGroupTitle = String.Empty; | ||
4692 | else | ||
4693 | cAgent.ActiveGroupTitle = Grouptitle; | ||
4691 | } | 4694 | } |
4692 | } | 4695 | } |
4693 | 4696 | ||