Bugfix: restore alien shots

This commit is contained in:
Fabrice Ecaille
2013-10-07 18:27:47 +02:00
parent 586dcbc0f6
commit f6ef50f071

View File

@@ -183,7 +183,7 @@ Game = {
$.each(Game.aliens, function(index, alien ) { $.each(Game.aliens, function(index, alien ) {
alien.move(); alien.move();
if( alien.health > 0 && Math.random() < alien.aggression ) { if( alien.health > 0 && Math.random() < alien.aggression ) {
//alien.fire($("#aliensShots"), "alienShot"); alien.fire($("#aliensShots"), "alienShot");
} }
}); });
}, },