From d622df0e9a001f8b4b7ebb548c101b7347649b28 Mon Sep 17 00:00:00 2001 From: Woodworks Date: Mon, 29 Feb 2016 13:04:26 -0500 Subject: [PATCH] Messing with growth increase --- js/snake.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/snake.js b/js/snake.js index cec1179a..55b8398e 100644 --- a/js/snake.js +++ b/js/snake.js @@ -114,7 +114,7 @@ SNAKE.Snake = SNAKE.Snake || (function() { var me = this, playingBoard = config.playingBoard, myId = instanceNumber++, - growthIncr = 5, + growthIncr = 15, moveQueue = [], // a queue that holds the next moves of the snake currentDirection = 1, // 0: up, 1: left, 2: down, 3: right columnShift = [0, 1, 0, -1],