From 43037b0a5b3a947bc1347b40ce1086b975c0e072 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Wed, 25 Oct 2023 11:35:30 +0200 Subject: [PATCH] don't return null for unknown --- EDPlayerJournal/Thargoid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EDPlayerJournal/Thargoid.cs b/EDPlayerJournal/Thargoid.cs index 7d9e045..aff3395 100644 --- a/EDPlayerJournal/Thargoid.cs +++ b/EDPlayerJournal/Thargoid.cs @@ -53,7 +53,7 @@ public class Thargoid { }; public static Dictionary VesselNames { get; } = new() { - { ThargoidVessel.Unknown, null }, + { ThargoidVessel.Unknown, "(Unknown)" }, { ThargoidVessel.Revenant, "Revenant" }, { ThargoidVessel.Scout, "Scout" }, { ThargoidVessel.Orthrus, "Orthrus" },