From a9553aa10148519bd0628d8e52ea604f87d4739e Mon Sep 17 00:00:00 2001 From: Chomp Date: Mon, 13 Jan 2025 12:18:48 +0000 Subject: [PATCH] Fixed typing issue with `RepeatableQuests` --- Core/Models/Eft/Common/Tables/RepeatableQuests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Models/Eft/Common/Tables/RepeatableQuests.cs b/Core/Models/Eft/Common/Tables/RepeatableQuests.cs index ad215c08..0fd4078a 100644 --- a/Core/Models/Eft/Common/Tables/RepeatableQuests.cs +++ b/Core/Models/Eft/Common/Tables/RepeatableQuests.cs @@ -95,7 +95,7 @@ public class PmcDataRepeatableQuest public string? UnavailableTime { get; set; } [JsonPropertyName("activeQuests")] - public List? ActiveQuests { get; set; } + public List? ActiveQuests { get; set; } [JsonPropertyName("inactiveQuests")] public List? InactiveQuests { get; set; }