diff --git a/src/utils/Game.ts b/src/utils/Game.ts index 4cd4878..190d1f3 100644 --- a/src/utils/Game.ts +++ b/src/utils/Game.ts @@ -99,9 +99,9 @@ export class Game { // Create the deck for the game for (var i = 0; i <= DECK.total; i++) { if (i <= DECK.fascist) { - this.deck[i] = `fascist`; + this.deck.push(`fascist`); } else { - this.deck[i] = `liberal`; + this.deck.push(`liberal`); }; }; };