From d2c139ce6ee6886b2144ee9c6fc3494b1f5af1ec Mon Sep 17 00:00:00 2001 From: Dante Ruiz Date: Tue, 21 Mar 2017 22:25:45 +0100 Subject: [PATCH] fix error from using a misspelled function --- scripts/system/controllers/handControllerGrab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/controllers/handControllerGrab.js b/scripts/system/controllers/handControllerGrab.js index 0f2bf3346a..c8b78b4d08 100644 --- a/scripts/system/controllers/handControllerGrab.js +++ b/scripts/system/controllers/handControllerGrab.js @@ -3601,7 +3601,7 @@ function MyController(hand) { if (this.stylusTarget.entityID) { entityPropertiesCache.addEntity(this.stylusTarget.entityID); - this.stylusTarget = calcualteStylusTargetFromEntity(this.stylusTip, this.stylusTarget.entityID); + this.stylusTarget = calculateStylusTargetFromEntity(this.stylusTip, this.stylusTarget.entityID); } else if (this.stylusTarget.overlayID) { this.stylusTarget = calculateStylusTargetFromOverlay(this.stylusTip, this.stylusTarget.overlayID); }