diff --git a/indra/newview/lltooldraganddrop.cpp b/indra/newview/lltooldraganddrop.cpp
index b4107192d6b58a8731669fa2d9cda49d4d1d364e..6e7242697654e9f1fcbec6c7d32d1d7c4011029f 100644
--- a/indra/newview/lltooldraganddrop.cpp
+++ b/indra/newview/lltooldraganddrop.cpp
@@ -1471,8 +1471,11 @@ void LLToolDragAndDrop::dropObject(LLViewerObject* raycast_target,
 	// currently the ray's end point is an approximation,
 	// and is sometimes too short (causing failure.)  so we
 	// double the ray's length:
-	LLVector3 ray_direction = ray_start - ray_end;
-	ray_end = ray_end - ray_direction;
+	if (bypass_sim_raycast == FALSE)
+	{
+		LLVector3 ray_direction = ray_start - ray_end;
+		ray_end = ray_end - ray_direction;
+	}
 	
 	
 	// Message packing code should be it's own uninterrupted block