Skip to content

Commit

Permalink
Fix CK3 CoAs not being replaced by I:R ones (#2503) #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains authored Feb 24, 2025
1 parent 4481a0c commit d1e3a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ImperatorToCK3/Outputter/CoatOfArmsOutputter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ internal static async Task OutputCoas(string outputModPath, Title.LandedTitles t
continue;
}

// If the title's ID is present in CoaMapper, we don't need to output the CoA (because it's already in the CK3 mod filesystem).
if (ck3CoaMapper.GetCoaForFlagName(title.Id, warnIfMissing: false) is not null) {
// If the title's CoA is the same as in CoaMapper, we don't need to output the CoA (because it's already in the CK3 mod filesystem).
if (ck3CoaMapper.GetCoaForFlagName(title.Id, warnIfMissing: false) == coa) {
continue;
}

Expand Down

0 comments on commit d1e3a11

Please sign in to comment.