From 438d0c47475c031dae054561e116114f5ccdceaa Mon Sep 17 00:00:00 2001 From: Chomp Date: Sat, 29 Jul 2023 08:23:38 +0100 Subject: [PATCH] Add quest names --- QuestValidator.Common/Helpers/QuestNames.cs | 8 ++++++-- QuestValidator.Common/Models/Quest.cs | 5 ++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/QuestValidator.Common/Helpers/QuestNames.cs b/QuestValidator.Common/Helpers/QuestNames.cs index 6c1e2f5..5d9a6de 100644 --- a/QuestValidator.Common/Helpers/QuestNames.cs +++ b/QuestValidator.Common/Helpers/QuestNames.cs @@ -321,7 +321,6 @@ namespace QuestValidator.Common.Helpers { Quest.BestJobInTheWorld, "63a9ae24009ffc6a551631a5" }, { Quest.BroadcastPart4, "6391372c8ba6894d155e77d7" }, { Quest.RoadClosed, "639282134ed9512be67647ed"}, - { Quest.MakeAmends, "6391d9144b15ca31f76bc323" }, { Quest.InformationSource, "63966faeea19ac7ed845db2c" }, { Quest.MissingInformant, "63966fbeea19ac7ed845db2e" }, { Quest.Snatch, "63966fccac6f8f3c677b9d89" }, @@ -342,6 +341,9 @@ namespace QuestValidator.Common.Helpers { Quest.TerraGroupTrialP1, "64b90786bbf5bf2b460ad982"}, { Quest.TerraGroupTrialP2, "64b90792f43eebce7c01e7af"}, { Quest.TerraGroupTrialP3, "64b907978d327e5bf9085bd9"}, + { Quest.MakeAmendsP1, "6391d90f4ed9512be67647df"}, + { Quest.MakeAmendsP2, "6391d912f8e5dd32bf4e3ab2"}, + { Quest.MakeAmendsP2Copy, "6391d9144b15ca31f76bc323"}, }; private static readonly Dictionary questNames = new Dictionary @@ -647,6 +649,7 @@ namespace QuestValidator.Common.Helpers { "625d70031ed3bb5bcc5bd9e5", "Key to the Tower"}, { "625d7005a4eb80027c4f2e09", "Knock - Knock"}, { "625d700cc48e6c62a440fab5", "Getting Acquainted"}, + { "6391d90f4ed9512be67647df", "Make Amends P1"}, { "626148251ed3bb5bcc5bd9ed", "Make Amends - Buyout"}, { "6261482fa4eb80027c4f2e11", "Make Amends - Equipment"}, { "626148334149f1149b5b12ca", "Make Amends - Security"}, @@ -662,7 +665,8 @@ namespace QuestValidator.Common.Helpers { "63a9ae24009ffc6a551631a5", "Best Job in the World" }, { "6391372c8ba6894d155e77d7", "Broadcast - Part 4"}, { "639282134ed9512be67647ed", "Road Closed" }, - { "6391d9144b15ca31f76bc323", "Make Amends"}, + { "6391d912f8e5dd32bf4e3ab2", "Make Amends p2"}, + { "6391d9144b15ca31f76bc323", "Make Amends p2 copy"}, { "63966faeea19ac7ed845db2c", "Information Source"}, { "63966fbeea19ac7ed845db2e", "Missing Informant"}, { "63966fccac6f8f3c677b9d89", "Snatch"}, diff --git a/QuestValidator.Common/Models/Quest.cs b/QuestValidator.Common/Models/Quest.cs index d927bdd..7dda7cf 100644 --- a/QuestValidator.Common/Models/Quest.cs +++ b/QuestValidator.Common/Models/Quest.cs @@ -338,6 +338,9 @@ CocktailTasting = 333, TerraGroupTrialP1 = 334, TerraGroupTrialP2 = 335, - TerraGroupTrialP3 = 336 + TerraGroupTrialP3 = 336, + MakeAmendsP1 = 337, + MakeAmendsP2 = 338, + MakeAmendsP2Copy = 339 } }