aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
authorMelanie2013-04-25 21:35:18 +0100
committerMelanie2013-04-25 21:37:40 +0100
commit40036ca05f3a34ef7f0728ed52878068a66bc502 (patch)
treefad0d46232909fd3022ff3e54d661944b472c936 /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
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 '')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 4979be8..98160c9 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -9860,7 +9860,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
9860 EconomyDataRequest handlerEconomoyDataRequest = OnEconomyDataRequest; 9860 EconomyDataRequest handlerEconomoyDataRequest = OnEconomyDataRequest;
9861 if (handlerEconomoyDataRequest != null) 9861 if (handlerEconomoyDataRequest != null)
9862 { 9862 {
9863 handlerEconomoyDataRequest(AgentId); 9863 handlerEconomoyDataRequest(this);
9864 } 9864 }
9865 return true; 9865 return true;
9866 } 9866 }