diff --git a/EliteBGS/LogGenerator/CargoSoldFormatter.cs b/EliteBGS/LogGenerator/CargoSoldFormatter.cs index dc23b70..4cc080b 100644 --- a/EliteBGS/LogGenerator/CargoSoldFormatter.cs +++ b/EliteBGS/LogGenerator/CargoSoldFormatter.cs @@ -69,7 +69,7 @@ public class CargoSoldFormatter : LogFormatter { builder.Append("Sold: "); builder.AppendFormat("{0}t", tons); if (totalProfit >= 100000) { - builder.AppendFormat(", {0} Profit", Credits.FormatMillions(totalProfit)); + builder.AppendFormat(", {0} profit", Credits.FormatMillions(totalProfit)); } return builder.ToString();