From 642ef7cd3190f6caf892e5a08847cfcaf8bd9ce1 Mon Sep 17 00:00:00 2001 From: Noah Moroze Date: Thu, 22 May 2014 20:36:48 -0400 Subject: [PATCH] Removed space-to-speed-up until we figure out an alternative --- js/input.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/js/input.js b/js/input.js index ee664ae..c77515d 100644 --- a/js/input.js +++ b/js/input.js @@ -58,14 +58,14 @@ var tapRight = Hammer(document.getElementById("rightTap")).on("tap", function(ev MainClock.rotate(-1); }); -keypress.register_combo({ - keys: "space", - on_keyup: function() { - iter = 1; - scoreAdditionCoeff = 1; - }, - on_keydown: function() { - iter = 2; - scoreAdditionCoeff = 2; - } -}); +// keypress.register_combo({ +// keys: "space", +// on_keyup: function() { +// iter = 1; // <- 1337 hax that reset speed anywhere in the game +// scoreAdditionCoeff = 1; +// }, +// on_keydown: function() { +// iter = 2; +// scoreAdditionCoeff = 2; +// } +// });