diff options
author | Melanie | 2010-10-29 20:40:48 +0100 |
---|---|---|
committer | Melanie | 2010-10-29 20:40:48 +0100 |
commit | 9331898c320d7d6046c6d1ad467cdee0e32c8b71 (patch) | |
tree | 917ff7facdeb38d96f5f69576a134cbad4776eae /OpenSim/Region/ClientStack/LindenUDP | |
parent | Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/ca... (diff) | |
parent | Merge branch 'dev-appearance' (diff) | |
download | opensim-SC_OLD-9331898c320d7d6046c6d1ad467cdee0e32c8b71.zip opensim-SC_OLD-9331898c320d7d6046c6d1ad467cdee0e32c8b71.tar.gz opensim-SC_OLD-9331898c320d7d6046c6d1ad467cdee0e32c8b71.tar.bz2 opensim-SC_OLD-9331898c320d7d6046c6d1ad467cdee0e32c8b71.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index e5cf0dc..b532cd4 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -79,7 +79,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
79 | public event DeRezObject OnDeRezObject; | 79 | public event DeRezObject OnDeRezObject; |
80 | public event ModifyTerrain OnModifyTerrain; | 80 | public event ModifyTerrain OnModifyTerrain; |
81 | public event Action<IClientAPI> OnRegionHandShakeReply; | 81 | public event Action<IClientAPI> OnRegionHandShakeReply; |
82 | public event GenericCall2 OnRequestWearables; | 82 | public event GenericCall1 OnRequestWearables; |
83 | public event SetAppearance OnSetAppearance; | 83 | public event SetAppearance OnSetAppearance; |
84 | public event AvatarNowWearing OnAvatarNowWearing; | 84 | public event AvatarNowWearing OnAvatarNowWearing; |
85 | public event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv; | 85 | public event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv; |
@@ -5681,11 +5681,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5681 | 5681 | ||
5682 | private bool HandlerAgentWearablesRequest(IClientAPI sender, Packet Pack) | 5682 | private bool HandlerAgentWearablesRequest(IClientAPI sender, Packet Pack) |
5683 | { | 5683 | { |
5684 | GenericCall2 handlerRequestWearables = OnRequestWearables; | 5684 | GenericCall1 handlerRequestWearables = OnRequestWearables; |
5685 | 5685 | ||
5686 | if (handlerRequestWearables != null) | 5686 | if (handlerRequestWearables != null) |
5687 | { | 5687 | { |
5688 | handlerRequestWearables(); | 5688 | handlerRequestWearables(sender); |
5689 | } | 5689 | } |
5690 | 5690 | ||
5691 | Action<IClientAPI> handlerRequestAvatarsData = OnRequestAvatarsData; | 5691 | Action<IClientAPI> handlerRequestAvatarsData = OnRequestAvatarsData; |
@@ -5728,7 +5728,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5728 | if (appear.ObjectData.TextureEntry.Length > 1) | 5728 | if (appear.ObjectData.TextureEntry.Length > 1) |
5729 | te = new Primitive.TextureEntry(appear.ObjectData.TextureEntry, 0, appear.ObjectData.TextureEntry.Length); | 5729 | te = new Primitive.TextureEntry(appear.ObjectData.TextureEntry, 0, appear.ObjectData.TextureEntry.Length); |
5730 | 5730 | ||
5731 | handlerSetAppearance(te, visualparams); | 5731 | handlerSetAppearance(sender, te, visualparams); |
5732 | } | 5732 | } |
5733 | catch (Exception e) | 5733 | catch (Exception e) |
5734 | { | 5734 | { |