From 204d6b8914c1e1d1b2fe73893c61eb35ddf36ad2 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Fri, 8 Sep 2023 11:49:55 +0200 Subject: [PATCH] rename glaive to hunter Glaive and Scythe can no longer be distinguished from the bounty claims you get. --- EDPlayerJournal/Thargoid.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/EDPlayerJournal/Thargoid.cs b/EDPlayerJournal/Thargoid.cs index 6ae1959..92d837d 100644 --- a/EDPlayerJournal/Thargoid.cs +++ b/EDPlayerJournal/Thargoid.cs @@ -8,7 +8,8 @@ public enum ThargoidVessel { Basilisk = 4, Medusa = 5, Hydra = 6, - Glaive = 7, + // Includes Glaive and Scythe + Hunter = 7, /// /// Thargoid drone /// @@ -24,7 +25,7 @@ public class Thargoid { { 65000, ThargoidVessel.Scout }, { 75000, ThargoidVessel.Scout }, // New in Update 15 - { 4500000, ThargoidVessel.Glaive }, + { 4500000, ThargoidVessel.Hunter }, { 6500000, ThargoidVessel.Cyclops }, { 20000000, ThargoidVessel.Basilisk }, //{ 25000000, ThargoidVessel.Orthrus }, @@ -54,7 +55,7 @@ public class Thargoid { { ThargoidVessel.Basilisk, "Basilisk" }, { ThargoidVessel.Medusa, "Medusa" }, { ThargoidVessel.Hydra, "Hydra" }, - { ThargoidVessel.Glaive, "Glaive" }, + { ThargoidVessel.Hunter, "Hunter" }, }; public static ThargoidVessel GetVesselByPayout(ulong payout) {