better name market buy/market sold

This commit is contained in:
Florian Stinglmayr 2023-04-19 10:13:35 +02:00
parent 5fe652f98c
commit 00deaf20fc
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ public class CargoSoldFormatter : LogFormatter {
StringBuilder builder = new(); StringBuilder builder = new();
builder.Append("Trade: "); 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));

View File

@ -12,6 +12,6 @@ public class MarketBuyFormat : GenericFormat<BuyCargo> {
if (tons <= 0) { if (tons <= 0) {
return ""; return "";
} }
return string.Format("Market: {0}t bought", tons); return string.Format("Bought: {0}t bought", tons);
} }
} }