Skip to content

Commit

Permalink
Natural merchants should not start with spaceports (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekolis committed Feb 4, 2024
1 parent a0234b5 commit c30b1d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion FrEee/Setup/GameSetup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,10 @@ void TryCreateFacility(FacilityTemplate? template)

// create basic facilities, one each
TryCreateFacility(sy);
TryCreateFacility(sp);
if (!emp.PrimaryRace.HasAbility("No Spaceports"))
{
TryCreateFacility(sp);
}
TryCreateFacility(rd);
TryCreateFacility(rad);
TryCreateFacility(org);
Expand Down

0 comments on commit c30b1d8

Please sign in to comment.