diff options
author | Teravus Ovares | 2009-07-29 20:32:54 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-07-29 20:32:54 +0000 |
commit | f727f26bcc26a740a1bd0585e3cdeff0c8d81a25 (patch) | |
tree | 6131b08c94b65a9fea773a1853d382d85377b523 /OpenSim/Region/ClientStack | |
parent | Thank you, coyled, for a patch to change Flotsamcache path generation (diff) | |
download | opensim-SC_OLD-f727f26bcc26a740a1bd0585e3cdeff0c8d81a25.zip opensim-SC_OLD-f727f26bcc26a740a1bd0585e3cdeff0c8d81a25.tar.gz opensim-SC_OLD-f727f26bcc26a740a1bd0585e3cdeff0c8d81a25.tar.bz2 opensim-SC_OLD-f727f26bcc26a740a1bd0585e3cdeff0c8d81a25.tar.xz |
* An attempt to fix mantis #3953
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index c956421..e532939 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -1616,8 +1616,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1616 | agentData.child = false; | 1616 | agentData.child = false; |
1617 | agentData.firstname = m_firstName; | 1617 | agentData.firstname = m_firstName; |
1618 | agentData.lastname = m_lastName; | 1618 | agentData.lastname = m_lastName; |
1619 | 1619 | ||
1620 | ICapabilitiesModule capsModule = m_scene.RequestModuleInterface<ICapabilitiesModule>(); | 1620 | ICapabilitiesModule capsModule = m_scene.RequestModuleInterface<ICapabilitiesModule>(); |
1621 | |||
1622 | if (capsModule == null) // can happen when shutting down. | ||
1623 | return agentData; | ||
1624 | |||
1621 | agentData.CapsPath = capsModule.GetCapsPath(m_agentId); | 1625 | agentData.CapsPath = capsModule.GetCapsPath(m_agentId); |
1622 | agentData.ChildrenCapSeeds = new Dictionary<ulong,string>(capsModule.GetChildrenSeeds(m_agentId)); | 1626 | agentData.ChildrenCapSeeds = new Dictionary<ulong,string>(capsModule.GetChildrenSeeds(m_agentId)); |
1623 | 1627 | ||