add the market name to trading entries

This commit is contained in:
Florian Stinglmayr 2024-04-28 12:41:50 +02:00
parent 463598c779
commit 4d3048a37d

View File

@ -49,10 +49,11 @@ public class SellCargo : Transaction {
}
foreach (MarketSellEntry sell in sold) {
builder.AppendFormat("Sold {0} {1} to the {2}",
builder.AppendFormat("Sold {0} {1} to the {2} of {3}",
sell.Count,
Cargo,
Market
Market,
Station
);
if (Profit != 0) {