Disable smooth movement in teleport.js

This commit is contained in:
Ryan Huffman 2016-09-30 10:49:45 -07:00
parent 53623f7583
commit 2ef7c9a57a

View file

@ -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;
}
};