Skip to content

Commit

Permalink
#700 Adds missing propulsion tech for from another galaxy.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuomount committed Feb 25, 2024
1 parent d3c24d1 commit 9b27fd6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/openRealmOfStars/player/PlayerInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,11 @@ public PlayerInfo(final SpaceRace race, final int maxPlayers,
extraTech[0] = "randomElectronics";
extraTech[1] = "randomCombat";
}
if (getStartingScenario() == StartingScenario.FROM_ANOTHER_GALAXY) {
extraTech = new String[2];
extraTech[0] = "randomPropulsion";
extraTech[1] = "randomPropulsion";
}
setFakeMilitarySize(100);
// This is the old way of government
setGovernment(GovernmentType.AI);
Expand Down

0 comments on commit 9b27fd6

Please sign in to comment.