diff options
author | lbsa71 | 2007-11-05 14:38:58 +0000 |
---|---|---|
committer | lbsa71 | 2007-11-05 14:38:58 +0000 |
commit | f6c8c10d3fce8eb279608cdeb9d8154fbca3852c (patch) | |
tree | e694744ba737b671cf77407c210263244b6b65ca /OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs | |
parent | add a fixup for linux building (diff) | |
download | opensim-SC_OLD-f6c8c10d3fce8eb279608cdeb9d8154fbca3852c.zip opensim-SC_OLD-f6c8c10d3fce8eb279608cdeb9d8154fbca3852c.tar.gz opensim-SC_OLD-f6c8c10d3fce8eb279608cdeb9d8154fbca3852c.tar.bz2 opensim-SC_OLD-f6c8c10d3fce8eb279608cdeb9d8154fbca3852c.tar.xz |
* Substituted som 'GenericCall' with Action<>
* OnRequestWearables does no longer accept 'Client' as param, since it's always on the current client
* Fixed SendOwnWearables to always operate on self, as that's what it does
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs b/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs index 7c1a663..7a778e8 100644 --- a/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs +++ b/OpenSim/Region/ClientStack/ClientView.ProcessPackets.cs | |||
@@ -158,7 +158,7 @@ namespace OpenSim.Region.ClientStack | |||
158 | case PacketType.AgentWearablesRequest: | 158 | case PacketType.AgentWearablesRequest: |
159 | if (OnRequestWearables != null) | 159 | if (OnRequestWearables != null) |
160 | { | 160 | { |
161 | OnRequestWearables(this); | 161 | OnRequestWearables( ); |
162 | } | 162 | } |
163 | if (OnRequestAvatarsData != null) | 163 | if (OnRequestAvatarsData != null) |
164 | { | 164 | { |