From 5f9fff39221a3d80f40e4df4b4492bfa6dccb13a Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Fri, 25 Nov 2022 14:39:45 +0100 Subject: [PATCH] unknown system is better than no system --- EliteBGS/Objective.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EliteBGS/Objective.cs b/EliteBGS/Objective.cs index a9c020d..979f9a7 100644 --- a/EliteBGS/Objective.cs +++ b/EliteBGS/Objective.cs @@ -77,6 +77,8 @@ public class Objective : IComparable { StringBuilder str = new StringBuilder(); if (!string.IsNullOrEmpty(System)) { str.AppendFormat("System: {0}", System); + } else { + str.AppendFormat("System: Unknown"); } if (!string.IsNullOrEmpty(Faction)) { if (str.Length > 0) {