remove extra bought from log

This commit is contained in:
Florian Stinglmayr 2023-04-27 16:24:48 +02:00
parent 5487cb3d37
commit f9f1842cb7

View File

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