From 5b7945a501700e5ceccceef9071d0fb575b21899 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 22 Sep 2024 12:30:38 +0100 Subject: [PATCH] Added missing traderId to conditionCounter interface --- project/src/models/eft/common/tables/IQuest.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/project/src/models/eft/common/tables/IQuest.ts b/project/src/models/eft/common/tables/IQuest.ts index 3289c918..d39ae218 100644 --- a/project/src/models/eft/common/tables/IQuest.ts +++ b/project/src/models/eft/common/tables/IQuest.ts @@ -68,6 +68,7 @@ export interface IQuestCondition { isNecessary?: boolean; doNotResetIfCounterCompleted?: boolean; dogtagLevel?: number; + traderId?: string; maxDurability?: number; minDurability?: number; counter?: IQuestConditionCounter;