Merge branch 'presence-refactor' of ssh://diva@opensimulator.org/var/git/opensim into presence-refactor

slimupdates
Diva Canto 2010-02-25 16:11:28 -08:00
commit ba38b3b2df
1 changed files with 4 additions and 1 deletions

View File

@ -325,7 +325,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
List<string> friendList = new List<string>();
foreach (FriendInfo fi in m_Friends[agentID].Friends)
friendList.Add(fi.Friend);
{
if ((fi.TheirFlags & 1) != 0)
friendList.Add(fi.Friend);
}
PresenceInfo[] presence = PresenceService.GetAgents(friendList.ToArray());