diff --git a/assets/Scripts/Game/Game.ts b/assets/Scripts/Game/Game.ts index b74340d..0470b34 100644 --- a/assets/Scripts/Game/Game.ts +++ b/assets/Scripts/Game/Game.ts @@ -88,7 +88,13 @@ export class Game extends Component { new PlayerProjectileCollisionSystem([this.haloProjectileLauncher, this.horizontalProjectileLauncher, this.diagonalProjectileLauncher]); - const upgrader = new Upgrader(this.player, this.horizontalProjectileLauncher, this.haloProjectileLauncher, settings.upgrades); + const upgrader = new Upgrader( + this.player, + this.horizontalProjectileLauncher, + this.haloProjectileLauncher, + this.diagonalProjectileLauncher, + settings.upgrades + ); new GameModalLauncher(this.modalWindowManager, this.player, this.gamePauser, upgrader); this.gameUI.init(this.player);