Fix: Alien moveRandomPosition

This commit is contained in:
2018-12-02 14:44:01 +09:00
parent 0f799183ee
commit 7e3ec80526
2 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ var Game = {
this.spaceship = new Spaceship();
this.aliens = [];
for(var i = 0; i < 50; i++) {
for(var i = 0; i < 100; i++) {
var alien = new Alien(this.spaceship);
this.aliens.push(alien);
}