diff options
author | UbitUmarov | 2016-08-04 17:29:47 +0100 |
---|---|---|
committer | UbitUmarov | 2016-08-04 17:29:47 +0100 |
commit | bb8e2710817310b741c851963a15c165229d507e (patch) | |
tree | 93257a8e637ac8f3ea95edefa5b75487cdaa4342 | |
parent | also disable vehicle hover if its hover is set to zero (diff) | |
download | opensim-SC-bb8e2710817310b741c851963a15c165229d507e.zip opensim-SC-bb8e2710817310b741c851963a15c165229d507e.tar.gz opensim-SC-bb8e2710817310b741c851963a15c165229d507e.tar.bz2 opensim-SC-bb8e2710817310b741c851963a15c165229d507e.tar.xz |
fix a typo
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IFriendsModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs index c88142a..c1c5613 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | |||
@@ -362,7 +362,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
362 | m_NeedsListOfOnlineFriends.Add(agentID); | 362 | m_NeedsListOfOnlineFriends.Add(agentID); |
363 | } | 363 | } |
364 | 364 | ||
365 | public void IsNpwRoot(ScenePresence sp) | 365 | public void IsNowRoot(ScenePresence sp) |
366 | { | 366 | { |
367 | RecacheFriends(sp.ControllingClient); | 367 | RecacheFriends(sp.ControllingClient); |
368 | 368 | ||
diff --git a/OpenSim/Region/Framework/Interfaces/IFriendsModule.cs b/OpenSim/Region/Framework/Interfaces/IFriendsModule.cs index 5c43b36..ec014f4 100644 --- a/OpenSim/Region/Framework/Interfaces/IFriendsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IFriendsModule.cs | |||
@@ -94,7 +94,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
94 | /// <param name="perms">These come from the FriendRights enum.</param> | 94 | /// <param name="perms">These come from the FriendRights enum.</param> |
95 | void GrantRights(IClientAPI remoteClient, UUID friendID, int perms); | 95 | void GrantRights(IClientAPI remoteClient, UUID friendID, int perms); |
96 | 96 | ||
97 | void IsNpwRoot(ScenePresence sp); | 97 | void IsNowRoot(ScenePresence sp); |
98 | bool SendFriendsOnlineIfNeeded(IClientAPI client); | 98 | bool SendFriendsOnlineIfNeeded(IClientAPI client); |
99 | } | 99 | } |
100 | } \ No newline at end of file | 100 | } \ No newline at end of file |
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index e985903..695754b 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2195,7 +2195,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2195 | if (friendsModule != null) | 2195 | if (friendsModule != null) |
2196 | { | 2196 | { |
2197 | if(gotCrossUpdate) | 2197 | if(gotCrossUpdate) |
2198 | friendsModule.IsNpwRoot(this); | 2198 | friendsModule.IsNowRoot(this); |
2199 | else | 2199 | else |
2200 | friendsModule.SendFriendsOnlineIfNeeded(ControllingClient); | 2200 | friendsModule.SendFriendsOnlineIfNeeded(ControllingClient); |
2201 | } | 2201 | } |