From e8a1a8c9067ded5314e7c1ec74ecd9034e0c2b37 Mon Sep 17 00:00:00 2001 From: Archangel Date: Wed, 29 Jan 2025 18:32:29 +0100 Subject: [PATCH] Make customization in the hideout persistent --- project/src/controllers/HideoutController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/HideoutController.ts b/project/src/controllers/HideoutController.ts index ef16fcd5..6a7179f6 100644 --- a/project/src/controllers/HideoutController.ts +++ b/project/src/controllers/HideoutController.ts @@ -1422,7 +1422,7 @@ export class HideoutController { return output; } - pmcData.Hideout.Customization[this.getHideoutCustomisationType(itemDetails.type)]; + pmcData.Hideout.Customization[this.getHideoutCustomisationType(itemDetails.type)] = itemDetails.itemId; return output; }