Skip to content

Commit cfb0ae6

Browse files
committed
CleanUpHistory: don't consider hegemonies to be invalid lieges
1 parent a5a186b commit cfb0ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ImperatorToCK3/CK3/Titles/LandedTitles.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ public void CleanUpHistory(CharacterCollection characters, Date ck3BookmarkDate)
443443

444444
// Remove liege entries of the same rank as the title they're in.
445445
// For example, TFE had more or less this: d_kordofan = { liege = d_kordofan }
446-
var validRankChars = new HashSet<char> { 'e', 'k', 'd', 'c', 'b'};
446+
var validRankChars = new HashSet<char> { 'h', 'e', 'k', 'd', 'c', 'b'};
447447
Parallel.ForEach(this, title => {
448448
if (!title.History.Fields.TryGetValue("liege", out var liegeField)) {
449449
return;

0 commit comments

Comments
 (0)