From e47b1be9cfdf7f5be1a0950d1de46422b9e82fbf Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 24 Feb 2017 14:48:22 -0800 Subject: [PATCH] Update shortbow spawning to use precise picking to find the ground --- unpublishedScripts/marketplace/shortbow/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpublishedScripts/marketplace/shortbow/utils.js b/unpublishedScripts/marketplace/shortbow/utils.js index 5f93b747b0..3ef82dcc13 100644 --- a/unpublishedScripts/marketplace/shortbow/utils.js +++ b/unpublishedScripts/marketplace/shortbow/utils.js @@ -48,7 +48,7 @@ utils = { var result = Entities.findRayIntersection({ origin: pos, direction: { x: 0.0, y: -1.0, z: 0.0 } - }); + }, true); if (result.intersects) { return result.intersection; }