From 8534a355181fe9799155a0720a4ff9cb12a7174e Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 26 Jun 2023 08:23:08 +0100 Subject: [PATCH] Add primorsky ave appt key to handbook with placeholder price of 1 rub --- project/src/services/RagfairPriceService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/src/services/RagfairPriceService.ts b/project/src/services/RagfairPriceService.ts index 5dcd39eb..cd4ebeba 100644 --- a/project/src/services/RagfairPriceService.ts +++ b/project/src/services/RagfairPriceService.ts @@ -67,7 +67,7 @@ export class RagfairPriceService implements OnLoad } /** - * Add placeholder values for the new sealed weapon containers + * Add placeholder values for items missing from handbook */ protected addMissingHandbookPrices(): void { @@ -82,6 +82,9 @@ export class RagfairPriceService implements OnLoad db.templates.handbook.Items.push({Id: container._id, ParentId: container._parent, Price: 100}); } } + + // Add handbook record for: Primorsky Ave apartment key + db.templates.handbook.Items.push({Id: "6391fcf5744e45201147080f", ParentId: "5c99f98d86f7745c314214b3", Price: 1}); } public getRoute(): string