From: AynRandDuran Date: Tue, 13 Jul 2021 15:58:28 +0000 (-0400) Subject: Bomb score threshold to 15 X-Git-Url: http://git.mcshandy.xyz/gitweb.cgi?a=commitdiff_plain;h=4825ff9b480f109b5281c15df708d6e0c2ac1566;p=assteroids Bomb score threshold to 15 --- 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; }