Change EconomyDataRequest signature to use an IClientAPI rather than UUID. This is needed because recent LL viewer codebases call this earlier in login when the client is not yet established in the sim and can't be found by UUID.

Sending the reply requires having the IClientAPI.
This commit is contained in:
Melanie
2013-04-25 21:35:18 +01:00
parent 5d0a8ff391
commit 03c9d8ae4f
3 changed files with 8 additions and 13 deletions

View File

@@ -313,7 +313,7 @@ namespace OpenSim.Framework
public delegate void ObjectPermissions(
IClientAPI controller, UUID agentID, UUID sessionID, byte field, uint localId, uint mask, byte set);
public delegate void EconomyDataRequest(UUID agentID);
public delegate void EconomyDataRequest(IClientAPI client);
public delegate void ObjectIncludeInSearch(IClientAPI remoteClient, bool IncludeInSearch, uint localID);