File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 7
7
namespace ImperatorToCK3 . Outputter ;
8
8
9
9
public static class WarsOutputter {
10
- public static void OutputWars ( string outputModName , IList < War > wars ) {
10
+ public static void OutputWars ( string outputModName , IEnumerable < War > wars ) {
11
11
Logger . Info ( "Writing wars..." ) ;
12
12
// dumping all into one file
13
13
var path = Path . Combine ( "output" , outputModName , "history/wars/00_wars.txt" ) ;
@@ -27,8 +27,8 @@ private static void OutputWar(TextWriter output, War war) {
27
27
if ( war . CasusBelli is not null ) {
28
28
output . WriteLine ( $ "\t casus_belli = { war . CasusBelli } ") ;
29
29
}
30
- output . WriteLine ( $ "\t attackers={{ { string . Join ( " " , war . Attackers ) } }}") ;
31
- output . WriteLine ( $ "\t defenders={{ { string . Join ( " " , war . Defenders ) } }}") ;
30
+ output . WriteLine ( $ "\t attackers={{ { string . Join ( ' ' , war . Attackers ) } }}") ;
31
+ output . WriteLine ( $ "\t defenders={{ { string . Join ( ' ' , war . Defenders ) } }}") ;
32
32
output . WriteLine ( $ "\t claimant = { war . Claimant } ") ;
33
33
34
34
output . WriteLine ( "}" ) ;
You can’t perform that action at this time.
0 commit comments