Change the permissions module to use the friend list cache already in the

friends module instead of requesting the entire friends list over the
network each time a prim is touched.
This commit is contained in:
Melanie
2009-11-05 17:29:52 +00:00
parent b098572525
commit ec0d5b408a
3 changed files with 29 additions and 2 deletions

View File

@@ -27,6 +27,7 @@
using OpenMetaverse;
using OpenSim.Framework;
using System.Collections.Generic;
namespace OpenSim.Region.Framework.Interfaces
{
@@ -45,5 +46,6 @@ namespace OpenSim.Region.Framework.Interfaces
/// </param>
/// <param name="offerMessage"></param>
void OfferFriendship(UUID fromUserId, IClientAPI toUserClient, string offerMessage);
List<FriendListItem> GetUserFriends(UUID agentID);
}
}