aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2016-08-05 01:59:19 +0100
committerUbitUmarov2016-08-05 01:59:19 +0100
commitab7619292f81b74d56ffe4446ec320ea6d94c786 (patch)
tree819f16ae67c95ece75c4077f4407fe372e603e8a
parentduplicate objects with the group requested by viewers and not internal idea o... (diff)
downloadopensim-SC_OLD-ab7619292f81b74d56ffe4446ec320ea6d94c786.zip
opensim-SC_OLD-ab7619292f81b74d56ffe4446ec320ea6d94c786.tar.gz
opensim-SC_OLD-ab7619292f81b74d56ffe4446ec320ea6d94c786.tar.bz2
opensim-SC_OLD-ab7619292f81b74d56ffe4446ec320ea6d94c786.tar.xz
also use group provided by viewer on ObjectDuplicateOnRay
-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 2e59e33..088cd4c 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -8267,7 +8267,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
8267 if (handlerObjectDuplicateOnRay != null) 8267 if (handlerObjectDuplicateOnRay != null)
8268 { 8268 {
8269 handlerObjectDuplicateOnRay(dupeOnRay.ObjectData[i].ObjectLocalID, dupeOnRay.AgentData.DuplicateFlags, 8269 handlerObjectDuplicateOnRay(dupeOnRay.ObjectData[i].ObjectLocalID, dupeOnRay.AgentData.DuplicateFlags,
8270 AgentId, ActiveGroupId, dupeOnRay.AgentData.RayTargetID, dupeOnRay.AgentData.RayEnd, 8270 AgentId, dupeOnRay.AgentData.GroupID, dupeOnRay.AgentData.RayTargetID, dupeOnRay.AgentData.RayEnd,
8271 dupeOnRay.AgentData.RayStart, dupeOnRay.AgentData.BypassRaycast, dupeOnRay.AgentData.RayEndIsIntersection, 8271 dupeOnRay.AgentData.RayStart, dupeOnRay.AgentData.BypassRaycast, dupeOnRay.AgentData.RayEndIsIntersection,
8272 dupeOnRay.AgentData.CopyCenters, dupeOnRay.AgentData.CopyRotates); 8272 dupeOnRay.AgentData.CopyCenters, dupeOnRay.AgentData.CopyRotates);
8273 } 8273 }