fix a typo

LSLKeyTest
UbitUmarov 2016-08-04 17:29:47 +01:00
parent 2619005f46
commit bb8e271081
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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);
} }
} }

View File

@ -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);
} }