mind spelling

This commit is contained in:
Florian Stinglmayr 2023-04-19 15:08:56 +02:00
parent 58b8ed07c4
commit cedc576b47

View File

@ -69,7 +69,7 @@ public class CargoSoldFormatter : LogFormatter {
builder.Append("Sold: "); builder.Append("Sold: ");
builder.AppendFormat("{0}t", tons); builder.AppendFormat("{0}t", tons);
if (totalProfit >= 100000) { if (totalProfit >= 100000) {
builder.AppendFormat(", {0} Profit", Credits.FormatMillions(totalProfit)); builder.AppendFormat(", {0} profit", Credits.FormatMillions(totalProfit));
} }
return builder.ToString(); return builder.ToString();