From d2a1957e085adc22a44b8b5bb52ae097aa8b391f Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Wed, 21 Sep 2016 16:47:34 -0700 Subject: [PATCH] Remove extraneous comment --- tutorial/tutorialZone.js | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/tutorial/tutorialZone.js b/tutorial/tutorialZone.js index 63772ee75d..e1e5a76eb0 100644 --- a/tutorial/tutorialZone.js +++ b/tutorial/tutorialZone.js @@ -1,24 +1,3 @@ -// A user designates ownership of the tutorial by creating a child entity (token) -// of the tutorial zone. The entity should have a short lifetime (5 seconds), and -// should have it's lifetime reset every second. -// -// * When you enter the "tutorial" begin zone -// * If the tutorial is owned -// * Show a "waiting" text, and check for ownership periodically -// * If the tutorial is not owned -// * Create the ownership token, begin tutorial -// * For extra safety, to avoid races, check after 1 second to confirm that -// another user hasn't created a token. If they have, use some method to -// resolve the conflict. -// * Once the user has finished the tutorial, stop creating the token to -// release ownership. -// -// * The tutorial will expose a local message API for controlling the tutorial -// * A special script will be used to: -// * Create a key shortcut to go to the beginning of the tutorial -// * -// - if (!Function.prototype.bind) { Function.prototype.bind = function(oThis) { if (typeof this !== 'function') {