From 03058775f63bc9acb513d7681c5d10c3e2c6fd12 Mon Sep 17 00:00:00 2001 From: r3tk0n Date: Tue, 19 Feb 2019 11:27:13 -0800 Subject: [PATCH] Remove debug prints. --- scripts/system/controllers/controllerModules/farGrabEntity.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/system/controllers/controllerModules/farGrabEntity.js b/scripts/system/controllers/controllerModules/farGrabEntity.js index 40f7fc57d7..69c17229e3 100644 --- a/scripts/system/controllers/controllerModules/farGrabEntity.js +++ b/scripts/system/controllers/controllerModules/farGrabEntity.js @@ -396,7 +396,6 @@ Script.include("/~/system/libraries/controllers.js"); this.run = function (controllerData) { //if (controllerData.triggerValues[this.hand] < TRIGGER_OFF_VALUE || this.targetIsNull()) { if (this.shouldCancel() || this.targetIsNull()) { - print("Canceling..."); this.endFarGrabEntity(controllerData); return makeRunningValues(false, [], []); } @@ -444,7 +443,6 @@ Script.include("/~/system/libraries/controllers.js"); var rayPickInfo = controllerData.rayPicks[this.hand]; if (rayPickInfo.type === Picks.INTERSECTED_ENTITY) { if (this.shouldGrab()) { - print("Grabbing..."); var entityID = rayPickInfo.objectID; var targetProps = Entities.getEntityProperties(entityID, DISPATCHER_PROPERTIES); if (targetProps.href !== "") {