Skip to content

Commit

Permalink
I'm stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains committed Jan 18, 2025
1 parent cc71113 commit 16c47f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ImperatorToCK3/CK3/World.cs
Original file line number Diff line number Diff line change
Expand Up @@ -701,10 +701,12 @@ private void HandleIcelandAndFaroeIslands(Imperator.World irWorld, Configuration
var faiths = Religions.Faiths.ToArray();

OrderedSet<string> titleIdsToHandle;
if (config.FallenEagleEnabled || irWorld.TerraIndomitaDetected) {
if (config.FallenEagleEnabled) {
// Iceland doesn't exist on TFE map.
// The islands are on the map in TI, so it should be handled normally instead of being given an Eremitic holder.
titleIdsToHandle = ["c_faereyar"];
} else if (irWorld.TerraIndomitaDetected) {
// The Faroe Islands are on the map in TI, so it should be handled normally instead of being given an Eremitic holder.
titleIdsToHandle = ["d_iceland"];
} else {
titleIdsToHandle = ["d_iceland", "c_faereyar"];
}
Expand Down

0 comments on commit 16c47f5

Please sign in to comment.