From e8df57b55a34dc17f8b8dcfd3c560d4b133a5d34 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Mon, 14 Feb 2022 17:45:41 +0100 Subject: [PATCH] missionids seem to require ulong --- MissionCompletedEntry.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MissionCompletedEntry.cs b/MissionCompletedEntry.cs index af057ed..8449e75 100644 --- a/MissionCompletedEntry.cs +++ b/MissionCompletedEntry.cs @@ -13,7 +13,7 @@ namespace EDJournal { public Dictionary> Influences => influences; protected override void Initialise() { - MissionID = JSON.Value("MissionID") ?? 0; + MissionID = JSON.Value("MissionID") ?? 0; Name = JSON.Value("Name"); Faction = JSON.Value("Faction") ?? ""; TargetFaction = JSON.Value("TargetFaction") ?? ""; @@ -70,7 +70,7 @@ namespace EDJournal { public string Commodity { get; set; } public int Count { get; set; } public int Donated { get; set; } - public int MissionID { get; set; } + public ulong MissionID { get; set; } public string Faction { get; set; } public string TargetFaction { get; set; }