From cca1416aa1d6c96348e9e4219223180351804e18 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 8 Nov 2024 22:03:00 +0000 Subject: [PATCH] As part of profile migration, empty out all insurance --- project/src/controllers/GameController.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index 7f5c8e78..be08ef44 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -262,6 +262,9 @@ export class GameController { this.logger.warning("Migration: deleting: ragfair traderinfo object from PMC"); delete fullProfile.characters.scav.TradersInfo.ragfair; } + + // Insured armors/helmets will return without soft inserts, remove all to be safe + fullProfile.insurance = []; } /**