aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 94040ca..7d31c77 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4162,9 +4162,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4162 foreach (DeRezObjectPacket.ObjectDataBlock data in 4162 foreach (DeRezObjectPacket.ObjectDataBlock data in
4163 DeRezPacket.ObjectData) 4163 DeRezPacket.ObjectData)
4164 { 4164 {
4165 // It just so happens that the values on the DeRezAction enumerator match the Destination
4166 // values given by a Second Life client
4165 handlerDeRezObject(this, data.ObjectLocalID, 4167 handlerDeRezObject(this, data.ObjectLocalID,
4166 DeRezPacket.AgentBlock.GroupID, 4168 DeRezPacket.AgentBlock.GroupID,
4167 DeRezPacket.AgentBlock.Destination, 4169 (DeRezAction)DeRezPacket.AgentBlock.Destination,
4168 DeRezPacket.AgentBlock.DestinationID); 4170 DeRezPacket.AgentBlock.DestinationID);
4169 } 4171 }
4170 } 4172 }