diff options
author | Melanie | 2010-02-04 10:51:36 +0000 |
---|---|---|
committer | Melanie | 2010-02-04 10:51:36 +0000 |
commit | f9a61f282500d2ac04919794c5391b98f24dd203 (patch) | |
tree | 236c76f22c91dc18774f6d540909c55283590e62 /OpenSim/Region/CoreModules | |
parent | Commenting UserAgentService.VerifyClient(UUID sessionID, string token) for no... (diff) | |
download | opensim-SC_OLD-f9a61f282500d2ac04919794c5391b98f24dd203.zip opensim-SC_OLD-f9a61f282500d2ac04919794c5391b98f24dd203.tar.gz opensim-SC_OLD-f9a61f282500d2ac04919794c5391b98f24dd203.tar.bz2 opensim-SC_OLD-f9a61f282500d2ac04919794c5391b98f24dd203.tar.xz |
Some interface and data structure changes, add the missing method in friends
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs index a07b6e2..a9388ef 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | |||
@@ -40,7 +40,7 @@ using OpenSim.Framework.Communications; | |||
40 | using OpenSim.Region.Framework.Interfaces; | 40 | using OpenSim.Region.Framework.Interfaces; |
41 | using OpenSim.Region.Framework.Scenes; | 41 | using OpenSim.Region.Framework.Scenes; |
42 | using OpenSim.Services.Interfaces; | 42 | using OpenSim.Services.Interfaces; |
43 | using GridRegion = OpenSim.Services.Interfaces.GridRegion; | 43 | using FriendInfo = OpenSim.Region.Framework.Interfaces.FriendInfo; |
44 | 44 | ||
45 | namespace OpenSim.Region.CoreModules.Avatar.Friends | 45 | namespace OpenSim.Region.CoreModules.Avatar.Friends |
46 | { | 46 | { |
@@ -88,5 +88,10 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
88 | { | 88 | { |
89 | return 1; | 89 | return 1; |
90 | } | 90 | } |
91 | |||
92 | public FriendInfo[] GetFriends(UUID PrincipalID) | ||
93 | { | ||
94 | return new FriendInfo[0]; | ||
95 | } | ||
91 | } | 96 | } |
92 | } | 97 | } |