From bc0824e0f58cdf2236f9b9dade7f16f48d3cbd87 Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 7 Sep 2021 18:03:18 +0100 Subject: [PATCH] Check traderid and type values --- QuestValidator/Program.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/QuestValidator/Program.cs b/QuestValidator/Program.cs index fefbbd5..d127192 100644 --- a/QuestValidator/Program.cs +++ b/QuestValidator/Program.cs @@ -2,7 +2,6 @@ using QuestValidator.Common; using QuestValidator.Common.Helpers; using QuestValidator.Helpers; -using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -152,6 +151,12 @@ namespace QuestValidator // Check location matches CheckValuesMatch(quest.location, relatedLiveQuest.location, "location value mismatch"); + + // Check traderid matches + CheckValuesMatch(quest.traderId, relatedLiveQuest.traderId, "traderid value mismatch"); + + // Check type matches + CheckValuesMatch(quest.type, relatedLiveQuest.type, "quest type value mismatch"); } private static void LogQuestDetails(Models.Quest quest)