diff --git a/EDPlayerJournal/Entries/Entry.cs b/EDPlayerJournal/Entries/Entry.cs index c4fa681..0d96f2a 100644 --- a/EDPlayerJournal/Entries/Entry.cs +++ b/EDPlayerJournal/Entries/Entry.cs @@ -42,6 +42,7 @@ public class Entry { { Events.ReceiveText, typeof(ReceiveTextEntry) }, { Events.RedeemVoucher, typeof(RedeemVoucherEntry) }, { Events.SearchAndRescue, typeof(SearchAndRescueEntry) }, + { Events.SelfDestruct, typeof(SelfDestructEntry) }, { Events.SellExplorationData, typeof(SellExplorationDataEntry) }, { Events.SellMicroResources, typeof(SellMicroResourcesEntry) }, { Events.SellOrganicData, typeof(SellOrganicDataEntry) }, diff --git a/EDPlayerJournal/Entries/Events.cs b/EDPlayerJournal/Entries/Events.cs index d9b2fb6..e75e6fd 100644 --- a/EDPlayerJournal/Entries/Events.cs +++ b/EDPlayerJournal/Entries/Events.cs @@ -32,6 +32,7 @@ public class Events { public static readonly string ReceiveText = "ReceiveText"; public static readonly string RedeemVoucher = "RedeemVoucher"; public static readonly string SearchAndRescue = "SearchAndRescue"; + public static readonly string SelfDestruct = "SelfDestruct"; public static readonly string SellExplorationData = "SellExplorationData"; public static readonly string SellMicroResources = "SellMicroResources"; public static readonly string SellOrganicData = "SellOrganicData"; diff --git a/EDPlayerJournal/Entries/SelfDestructEntry.cs b/EDPlayerJournal/Entries/SelfDestructEntry.cs new file mode 100644 index 0000000..79f723b --- /dev/null +++ b/EDPlayerJournal/Entries/SelfDestructEntry.cs @@ -0,0 +1,5 @@ +namespace EDPlayerJournal.Entries { + public class SelfDestructEntry : Entry { + // Has no data + } +}