aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-15 16:12:35 +0000
committerJustin Clark-Casey (justincc)2011-11-15 16:12:35 +0000
commit430821d83722f94612cb165de1b88d6268c95e07 (patch)
tree1b2bb1e90d99c3e8978928aebf0824f4352a7d9a /OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
parentrefactor: rename m_NeedsListOfFriends => m_NeedsListOfOnlineFriends to better... (diff)
downloadopensim-SC_OLD-430821d83722f94612cb165de1b88d6268c95e07.zip
opensim-SC_OLD-430821d83722f94612cb165de1b88d6268c95e07.tar.gz
opensim-SC_OLD-430821d83722f94612cb165de1b88d6268c95e07.tar.bz2
opensim-SC_OLD-430821d83722f94612cb165de1b88d6268c95e07.tar.xz
Rename FetchFriendslist() -> CacheFriends() and RefetchFriends() -> RecacheFriends() to reflect their intended function
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
index 02b417f..56bba75 100644
--- a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
@@ -30,7 +30,6 @@ using System.Collections;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Reflection; 31using System.Reflection;
32using System.Threading; 32using System.Threading;
33
34using log4net; 33using log4net;
35using Nini.Config; 34using Nini.Config;
36using Nwc.XmlRpc; 35using Nwc.XmlRpc;
@@ -84,9 +83,9 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
84 83
85 #endregion 84 #endregion
86 85
87 protected override bool FetchFriendslist(IClientAPI client) 86 protected override bool CacheFriends(IClientAPI client)
88 { 87 {
89 if (base.FetchFriendslist(client)) 88 if (base.CacheFriends(client))
90 { 89 {
91 UUID agentID = client.AgentId; 90 UUID agentID = client.AgentId;
92 // we do this only for the root agent 91 // we do this only for the root agent