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

@@ -9682,7 +9682,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
EconomyDataRequest handlerEconomoyDataRequest = OnEconomyDataRequest;
if (handlerEconomoyDataRequest != null)
{
handlerEconomoyDataRequest(AgentId);
handlerEconomoyDataRequest(this);
}
return true;
}