0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 02:30:43 -05:00

Fix incorrect type (#1082)

It was defined with values of string, but the data seems to be boolean
This commit is contained in:
Lacyway 2025-01-15 01:32:58 -08:00 committed by GitHub
parent d36443d9d1
commit ead7da160e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,7 @@ export interface IChatbotFeatures {
/** Human readable id to guid for each bot */
ids: Record<string, string>;
/** Bot Ids player is allowed to interact with */
enabledBots: Record<string, string>;
enabledBots: Record<string, boolean>;
}
export interface ICommandoFeatures {