From ead7da160e6eb4334c5599be86642f7a08b604a3 Mon Sep 17 00:00:00 2001 From: Lacyway <20912169+Lacyway@users.noreply.github.com> Date: Wed, 15 Jan 2025 01:32:58 -0800 Subject: [PATCH] Fix incorrect type (#1082) It was defined with values of string, but the data seems to be boolean --- project/src/models/spt/config/ICoreConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/models/spt/config/ICoreConfig.ts b/project/src/models/spt/config/ICoreConfig.ts index 8c5e8fe7..a64ef626 100644 --- a/project/src/models/spt/config/ICoreConfig.ts +++ b/project/src/models/spt/config/ICoreConfig.ts @@ -95,7 +95,7 @@ export interface IChatbotFeatures { /** Human readable id to guid for each bot */ ids: Record; /** Bot Ids player is allowed to interact with */ - enabledBots: Record; + enabledBots: Record; } export interface ICommandoFeatures {