add extra line after cartographics data

This commit is contained in:
Florian Stinglmayr 2022-01-22 09:21:20 +01:00
parent c9cb3e26e0
commit c34cb17c52
2 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace EliteBGS.BGS {
}
return string.Format("Sold {0} page(s) worth of universal cartographics\n" +
"(Total value: {1})\n", pages, Credits.FormatCredits(sum));
"(Total value: {1})\n\n", pages, Credits.FormatCredits(sum));
}
private string BuildCargoSold(Objective objective) {

View File

@ -43,7 +43,9 @@ namespace EliteBGS.BGS {
}
return string.Format("Sold {0} page(s) worth of universal cartographics\n" +
"(Total value: {1})\n", pages, Credits.FormatCredits(sum));
"(Total value: {1})\n\n",
pages, Credits.FormatCredits(sum)
);
}
private string BuildCargoSold(Objective objective) {