From 3938322bf34cf276bd83cf8518291545c0b661c1 Mon Sep 17 00:00:00 2001 From: Chomp Date: Mon, 9 Jan 2023 22:51:49 +0000 Subject: [PATCH] Make fields more accurate --- QuestValidator.Models/Input/Quest.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/QuestValidator.Models/Input/Quest.cs b/QuestValidator.Models/Input/Quest.cs index 68f2c96..de0bf72 100644 --- a/QuestValidator.Models/Input/Quest.cs +++ b/QuestValidator.Models/Input/Quest.cs @@ -99,6 +99,7 @@ namespace QuestValidator.Models public bool? doNotResetIfCounterCompleted { get; set; } public object value { get; set; } public int? availableAfter { get; set; } + public int? dispersion { get; set; } public string compareMethod { get;set;} public List visibilityConditions { get; set; } public SkillCondition baseAccuracy { get;set;} @@ -147,7 +148,7 @@ namespace QuestValidator.Models { public string _id { get; set; } public string _tpl { get; set; } - public QuestRewardUpd upd { get; set; } + public object upd { get; set; } public string parentId { get; set; } public string slotId { get; set; } }