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

Update EU4Province.cpp #525

Merged
merged 4 commits into from
Jan 6, 2025
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
4 changes: 2 additions & 2 deletions CK2ToEU4/Source/EU4World/Province/EU4Province.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void EU4::Province::initializeFromCK2(std::shared_ptr<CK2::Province> origProvinc
const mappers::ReligionMapper& religionMapper)
{
srcProvince = std::move(origProvince);
details.discoveredBy = {"eastern", "western", "muslim", "ottoman", "indian", "nomad_group", "MGE"}; // hardcoding for now.
details.discoveredBy = {"eastern", "western", "muslim", "ottoman", "indian", "nomad_group", "east_african", "sub_saharan", "MGE"}; // hardcoding for now.

// If we're initializing this from CK2 provinces, then having an owner or being a wasteland/sea is a given -
// there are no uncolonized provinces in CK2.
Expand Down Expand Up @@ -165,4 +165,4 @@ void EU4::Province::sterilize()
details.isCity = false;
// not clearing province modifiers! We're leaving great wonders right there.
// not touching dev, CoTs and similar!
}
}
Loading