From 2fb26299bb63f559e78ff66294c461d52efdc414 Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys Date: Fri, 20 Aug 2021 14:53:23 -0700 Subject: FlappyBug: Flap less aggressively The current flap strength makes the game a lot more difficult than other flappy games. Decrease the flap strength to make it a little easier to get higher scores. Before this change I could only get past 3 or 4 obstacles, now I can get 15 or 20 in, which seems more on par with other flappy games. --- Userland/Games/FlappyBug/Game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Games/FlappyBug/Game.h b/Userland/Games/FlappyBug/Game.h index 0bffc2d18e..1c56fafec3 100644 --- a/Userland/Games/FlappyBug/Game.h +++ b/Userland/Games/FlappyBug/Game.h @@ -65,7 +65,7 @@ private: void flap() { - const float flap_strength = 15.0f; + const float flap_strength = 10.0f; velocity = -flap_strength; } -- cgit v1.2.3