Skip to content

Commit c916a05

Browse files
committed
Don't try to overwrite history for noble family counties
1 parent d5bb392 commit c916a05

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ImperatorToCK3/CK3/World.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,9 @@ private void OverwriteCountiesHistory(CountryCollection irCountries, List<Govern
543543
FrozenSet<Governorship> countyLevelGovernorshipsSet = countyLevelGovernorships.ToFrozenSet();
544544

545545
foreach (var county in LandedTitles.Counties) {
546+
if (county.NobleFamily == true) {
547+
continue;
548+
}
546549
if (county.CapitalBaronyProvinceId is null) {
547550
Logger.Warn($"County {county} has no capital barony province!");
548551
continue;

0 commit comments

Comments
 (0)