From 4d3048a37daeacf26648b07cae7aecb7dbb356d8 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sun, 28 Apr 2024 12:41:50 +0200 Subject: [PATCH] add the market name to trading entries --- EDPlayerJournal/BGS/SellCargo.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/EDPlayerJournal/BGS/SellCargo.cs b/EDPlayerJournal/BGS/SellCargo.cs index 74d5721..0c6a6a6 100644 --- a/EDPlayerJournal/BGS/SellCargo.cs +++ b/EDPlayerJournal/BGS/SellCargo.cs @@ -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) {