From a13e8446d2578cd6ecbc4df7c2dec963803cf18f Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sun, 26 Feb 2023 22:01:13 +0100 Subject: [PATCH] fix summary for AX combat zones --- EliteBGS/LogGenerator/ThargoidFormatter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EliteBGS/LogGenerator/ThargoidFormatter.cs b/EliteBGS/LogGenerator/ThargoidFormatter.cs index f934413..20bf9fa 100644 --- a/EliteBGS/LogGenerator/ThargoidFormatter.cs +++ b/EliteBGS/LogGenerator/ThargoidFormatter.cs @@ -47,8 +47,8 @@ public class ThargoidFormatter : LogFormatter { builder.AppendFormat("{0} INT", interceptors); } if (scouts > 0) { - if (builder.Length> 0) { - builder.Append(", "); + if (interceptors > 0) { + builder.Append(" + "); } builder.AppendFormat("{0} SCT", scouts); }