From 8d95a4269818aed307bcf60aa1c0ef840f299ee5 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sat, 26 Nov 2022 01:29:50 +0100 Subject: [PATCH] don't add faction for combat zone --- EDPlayerJournal/BGS/CombatZone.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/EDPlayerJournal/BGS/CombatZone.cs b/EDPlayerJournal/BGS/CombatZone.cs index d04abb8..c46f522 100644 --- a/EDPlayerJournal/BGS/CombatZone.cs +++ b/EDPlayerJournal/BGS/CombatZone.cs @@ -29,7 +29,6 @@ public class CombatZone : Transaction { } public override string ToString() { - return string.Format("Won {0} x {1} {2} Combat Zone(s) for {3}", - Amount, Grade, Type, Faction); + return string.Format("Won {0} x {1} {2} Combat Zone(s)", Amount, Grade, Type); } }