diff options
author | Diva Canto | 2010-02-26 10:35:23 -0800 |
---|---|---|
committer | Diva Canto | 2010-02-26 10:35:23 -0800 |
commit | bbb43f9bdeda4994653c72fac62f9023d6dbdcdc (patch) | |
tree | 2a9458010ac18ca5e89b53364c619d4433d910fc /OpenSim/Region | |
parent | Flags on Store(Friend) are supposed to be MyFlags. (diff) | |
download | opensim-SC_OLD-bbb43f9bdeda4994653c72fac62f9023d6dbdcdc.zip opensim-SC_OLD-bbb43f9bdeda4994653c72fac62f9023d6dbdcdc.tar.gz opensim-SC_OLD-bbb43f9bdeda4994653c72fac62f9023d6dbdcdc.tar.bz2 opensim-SC_OLD-bbb43f9bdeda4994653c72fac62f9023d6dbdcdc.tar.xz |
Now showing friends online upon grid login.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs index 8b15abb..d38ce68 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | |||
@@ -331,11 +331,17 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
331 | private void SendPresence(UUID agentID) | 331 | private void SendPresence(UUID agentID) |
332 | { | 332 | { |
333 | if (!m_Friends.ContainsKey(agentID)) | 333 | if (!m_Friends.ContainsKey(agentID)) |
334 | { | ||
335 | m_log.DebugFormat("[FRIENDS MODULE]: agent {0} not found in local cache", agentID); | ||
334 | return; | 336 | return; |
337 | } | ||
335 | 338 | ||
336 | IClientAPI client = LocateClientObject(agentID); | 339 | IClientAPI client = LocateClientObject(agentID); |
337 | if (client == null) | 340 | if (client == null) |
341 | { | ||
342 | m_log.DebugFormat("[FRIENDS MODULE]: agent's client {0} not found in local scene", agentID); | ||
338 | return; | 343 | return; |
344 | } | ||
339 | 345 | ||
340 | List<string> friendList = new List<string>(); | 346 | List<string> friendList = new List<string>(); |
341 | 347 | ||