aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs6
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