From 2ef7c9a57a6d0f84987d5a8e521492e088396c7e Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Fri, 30 Sep 2016 10:49:45 -0700 Subject: [PATCH] Disable smooth movement in teleport.js --- scripts/system/controllers/teleport.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/system/controllers/teleport.js b/scripts/system/controllers/teleport.js index a0159e06a5..2abc6fe057 100644 --- a/scripts/system/controllers/teleport.js +++ b/scripts/system/controllers/teleport.js @@ -509,7 +509,9 @@ function Teleporter() { var offset = getAvatarFootOffset(); this.intersection.intersection.y += offset; this.exitTeleportMode(); - this.smoothArrival(); + // Disable smooth arrival, possibly temporarily + //this.smoothArrival(); + MyAvatar.position = _this.intersection.intersection; } };