From 081686e14110ff0da1a9706bd95ce293c2501437 Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 7 Feb 2025 09:49:16 +0000 Subject: [PATCH] Added new response property --- project/src/controllers/GameController.ts | 1 + project/src/models/eft/game/IGameConfigResponse.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index b9aaf0ab..3af29a46 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -465,6 +465,7 @@ export class GameController { eft: true, arena: false, }, + isGameSynced: true, }; return config; diff --git a/project/src/models/eft/game/IGameConfigResponse.ts b/project/src/models/eft/game/IGameConfigResponse.ts index ecf0baff..4a9923c3 100644 --- a/project/src/models/eft/game/IGameConfigResponse.ts +++ b/project/src/models/eft/game/IGameConfigResponse.ts @@ -14,6 +14,7 @@ export interface IGameConfigResponse { twitchEventMember: boolean; sessionMode: string; purchasedGames: IPurchasedGames; + isGameSynced: boolean; } export interface IPurchasedGames {