From c34223c598db11507dc8a660366b7e6915da8e62 Mon Sep 17 00:00:00 2001 From: madscientistninja Date: Thu, 26 Oct 2017 18:44:29 -0400 Subject: [PATCH] Updated the gravity so the bird would fall faster. This improves the gravity so the bird falls a little faster which improves the game because the bird sometimes does not fall fast enough to make it through tight corners. --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index c0554af..e5c4c94 100644 --- a/main.js +++ b/main.js @@ -1,6 +1,6 @@ var DEBUG = false; var SPEED = 180; -var GRAVITY = 18; +var GRAVITY = 21; var FLAP = 420; var SPAWN_RATE = 1 / 1.2; var OPENING = 144;