From 3fc53c3dc4707a535362ba2958fa6b3b66d5a295 Mon Sep 17 00:00:00 2001 From: Kyle <41976328+ImKyle4815@users.noreply.github.com> Date: Thu, 15 Aug 2019 18:44:47 -0700 Subject: [PATCH] Update life.js --- data/life/life.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/data/life/life.js b/data/life/life.js index d7c64f48..43452f9f 100644 --- a/data/life/life.js +++ b/data/life/life.js @@ -247,11 +247,12 @@ function updatePlayerBoxes() { playerList[n - 1].holdTime = 0 } } - if (i == touchX.length - 1) { - //At the end, start the loop! - loop = setTimeout(updatePlayerBoxes, 100) - } + // if (i == touchX.length - 1) { + // //At the end, start the loop! + // loop = setTimeout(updatePlayerBoxes, 100) + // } } + setTimeout(updatePlayerBoxes, 100) } // setTimeout(function() {alert(touchX[0] + ", " + touchY[0] + " & " + touchX[1] + ", " + touchY[1])}, 1000) }