Skip to content

Commit

Permalink
Merge pull request #65 from tjohnson314/master
Browse files Browse the repository at this point in the history
Fix deck setup for India map
  • Loading branch information
coyotte508 committed May 23, 2024
2 parents 18ab613 + adfab5d commit fd9f2f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions engine/src/maps/indian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ export const map: GameMap = {
} else if (numPlayers == 4) {
initialPowerPlants = initialPowerPlants.slice(1);
powerPlantsDeck = shuffle(powerPlantsDeck.slice(3).concat(initialPowerPlants), rng() + '');
} else {
powerPlantsDeck = shuffle(powerPlantsDeck.concat(initialPowerPlants), rng() + '');
}

powerPlantsDeck.unshift(first);
Expand Down

0 comments on commit fd9f2f9

Please sign in to comment.