Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Natural merchants should not start with spaceports #294

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Natural merchants should not start with spaceports
  • Loading branch information
ekolis committed Feb 4, 2024
commit 361761f4b5a6f5238a25fbb4c1e9485636add67a
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
Loading