Skip to content

Commit

Permalink
Don't set subjects as de jure vassals when the static option is on
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains committed Jan 6, 2025
1 parent 383762f commit 11b042f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ImperatorToCK3/CK3/Titles/Title.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ IReadOnlyCollection<string> enabledCK3Dlcs
if (overLordTitle is null) {
Logger.Warn($"Can't find CK3 title for country {dependency.OverlordId}, overlord of {country.Id}.");
}
DeJureLiege = overLordTitle;
if (!config.StaticDeJure) {
DeJureLiege = overLordTitle;
}
SetDeFactoLiege(overLordTitle, dependency.StartDate);
}
}
Expand Down

0 comments on commit 11b042f

Please sign in to comment.