diff options
author | Dan Lake | 2011-10-03 11:55:54 -0700 |
---|---|---|
committer | Dan Lake | 2011-10-03 11:55:54 -0700 |
commit | e77c919290e166f19e77f3ef040418dd39f2f5bd (patch) | |
tree | 05a052d4a97e193cb804313408a03aabe3b4c85a /OpenSim/Region/ClientStack/Linden | |
parent | Add execute permission to runprebuild2010.bat (diff) | |
download | opensim-SC_OLD-e77c919290e166f19e77f3ef040418dd39f2f5bd.zip opensim-SC_OLD-e77c919290e166f19e77f3ef040418dd39f2f5bd.tar.gz opensim-SC_OLD-e77c919290e166f19e77f3ef040418dd39f2f5bd.tar.bz2 opensim-SC_OLD-e77c919290e166f19e77f3ef040418dd39f2f5bd.tar.xz |
Remove usage of Linden packet types from inside Attachments Module and interface
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index ce2ff86..29dce17 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -6079,9 +6079,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
6079 | RezMultipleAttachmentsFromInv handlerRezMultipleAttachments = OnRezMultipleAttachmentsFromInv; | 6079 | RezMultipleAttachmentsFromInv handlerRezMultipleAttachments = OnRezMultipleAttachmentsFromInv; |
6080 | if (handlerRezMultipleAttachments != null) | 6080 | if (handlerRezMultipleAttachments != null) |
6081 | { | 6081 | { |
6082 | RezMultipleAttachmentsFromInvPacket rez = (RezMultipleAttachmentsFromInvPacket)Pack; | 6082 | List<KeyValuePair<UUID, uint>> rezlist = new List<KeyValuePair<UUID, uint>>(); |
6083 | handlerRezMultipleAttachments(this, rez.HeaderData, | 6083 | foreach (RezMultipleAttachmentsFromInvPacket.ObjectDataBlock obj in ((RezMultipleAttachmentsFromInvPacket)Pack).ObjectData) |
6084 | rez.ObjectData); | 6084 | rezlist.Add(new KeyValuePair<UUID, uint>(obj.ItemID, obj.AttachmentPt)); |
6085 | handlerRezMultipleAttachments(this, rezlist); | ||
6085 | } | 6086 | } |
6086 | 6087 | ||
6087 | return true; | 6088 | return true; |