From 4825ff9b480f109b5281c15df708d6e0c2ac1566 Mon Sep 17 00:00:00 2001 From: AynRandDuran Date: Tue, 13 Jul 2021 11:58:28 -0400 Subject: [PATCH] Bomb score threshold to 15 --- game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.cpp b/game.cpp index 4a4583b..b7bf5eb 100644 --- a/game.cpp +++ b/game.cpp @@ -117,7 +117,7 @@ void update_bullets(){ bullets[i].w = 0; score++; explode_asteroid(&asteroids[a]); - if((score%5 == 0) && score > 0 && bomb_proj.w < 16) { + if((score%15 == 0) && score > 0 && bomb_proj.w < 16) { //Bomb unlocked active_powerups |= BOMB; } -- 2.49.0