aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorMelanie2013-04-25 21:35:18 +0100
committerMelanie2013-04-25 21:37:40 +0100
commit40036ca05f3a34ef7f0728ed52878068a66bc502 (patch)
treefad0d46232909fd3022ff3e54d661944b472c936 /OpenSim/Framework
parentMake the kicked user's avie truly disappear when it's god-kicked. (diff)
downloadopensim-SC_OLD-40036ca05f3a34ef7f0728ed52878068a66bc502.zip
opensim-SC_OLD-40036ca05f3a34ef7f0728ed52878068a66bc502.tar.gz
opensim-SC_OLD-40036ca05f3a34ef7f0728ed52878068a66bc502.tar.bz2
opensim-SC_OLD-40036ca05f3a34ef7f0728ed52878068a66bc502.tar.xz
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.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 655ba8a..c88828b 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -320,7 +320,7 @@ namespace OpenSim.Framework
320 public delegate void ObjectPermissions( 320 public delegate void ObjectPermissions(
321 IClientAPI controller, UUID agentID, UUID sessionID, byte field, uint localId, uint mask, byte set); 321 IClientAPI controller, UUID agentID, UUID sessionID, byte field, uint localId, uint mask, byte set);
322 322
323 public delegate void EconomyDataRequest(UUID agentID); 323 public delegate void EconomyDataRequest(IClientAPI client);
324 324
325 public delegate void ObjectIncludeInSearch(IClientAPI remoteClient, bool IncludeInSearch, uint localID); 325 public delegate void ObjectIncludeInSearch(IClientAPI remoteClient, bool IncludeInSearch, uint localID);
326 326