better name market buy/market sold
This commit is contained in:
parent
5fe652f98c
commit
00deaf20fc
@ -66,7 +66,7 @@ public class CargoSoldFormatter : LogFormatter {
|
||||
|
||||
StringBuilder builder = new();
|
||||
|
||||
builder.Append("Trade: ");
|
||||
builder.Append("Sold: ");
|
||||
builder.AppendFormat("{0}t", tons);
|
||||
if (totalProfit >= 100000) {
|
||||
builder.AppendFormat(", {0} Profit", Credits.FormatMillions(totalProfit));
|
||||
|
@ -12,6 +12,6 @@ public class MarketBuyFormat : GenericFormat<BuyCargo> {
|
||||
if (tons <= 0) {
|
||||
return "";
|
||||
}
|
||||
return string.Format("Market: {0}t bought", tons);
|
||||
return string.Format("Bought: {0}t bought", tons);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user