From 253fd3a42ad0d1c67bfe62363cced0206d6c3882 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 23 Jul 2023 11:36:41 +0100 Subject: [PATCH] Fix prapor gift system failure on new profile creation --- project/src/controllers/GameController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index cb0f61d5..bf9c3aaa 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -126,8 +126,6 @@ export class GameController this.splitBotWavesIntoSingleWaves(); } - this.sendPraporGiftsToNewProfiles(pmcProfile); - this.profileFixerService.removeLegacyScavCaseProductionCrafts(pmcProfile); this.profileFixerService.addMissingHideoutAreasToProfile(fullProfile); @@ -146,6 +144,8 @@ export class GameController if (pmcProfile.Inventory) { + this.sendPraporGiftsToNewProfiles(pmcProfile); + this.profileFixerService.checkForOrphanedModdedItems(sessionID, pmcProfile); }