fix a typo
parent
2619005f46
commit
bb8e271081
|
@ -362,7 +362,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
|
||||||
m_NeedsListOfOnlineFriends.Add(agentID);
|
m_NeedsListOfOnlineFriends.Add(agentID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void IsNpwRoot(ScenePresence sp)
|
public void IsNowRoot(ScenePresence sp)
|
||||||
{
|
{
|
||||||
RecacheFriends(sp.ControllingClient);
|
RecacheFriends(sp.ControllingClient);
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||||
/// <param name="perms">These come from the FriendRights enum.</param>
|
/// <param name="perms">These come from the FriendRights enum.</param>
|
||||||
void GrantRights(IClientAPI remoteClient, UUID friendID, int perms);
|
void GrantRights(IClientAPI remoteClient, UUID friendID, int perms);
|
||||||
|
|
||||||
void IsNpwRoot(ScenePresence sp);
|
void IsNowRoot(ScenePresence sp);
|
||||||
bool SendFriendsOnlineIfNeeded(IClientAPI client);
|
bool SendFriendsOnlineIfNeeded(IClientAPI client);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2195,7 +2195,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
if (friendsModule != null)
|
if (friendsModule != null)
|
||||||
{
|
{
|
||||||
if(gotCrossUpdate)
|
if(gotCrossUpdate)
|
||||||
friendsModule.IsNpwRoot(this);
|
friendsModule.IsNowRoot(this);
|
||||||
else
|
else
|
||||||
friendsModule.SendFriendsOnlineIfNeeded(ControllingClient);
|
friendsModule.SendFriendsOnlineIfNeeded(ControllingClient);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue