Skip to content

Commit d8f95d7

Browse files
authored
Output landless=yes (#339) #patch
1 parent adcc9f4 commit d8f95d7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ImperatorToCK3/Outputter/TitleOutputter.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ public static void OutputTitle(StreamWriter writer, Title title, string indent)
1515
writer.WriteLine($"{indent}\tdefinite_form=yes");
1616
}
1717

18+
if (title.Landless) {
19+
writer.WriteLine($"{indent}\tlandless=yes");
20+
}
21+
1822
if (title.Color1 is not null) {
1923
writer.WriteLine($"{indent}\tcolor{title.Color1.Output()}");
2024
} else {

0 commit comments

Comments
 (0)