From e160724031980e97b9726b8528bdd9b4b920c10f Mon Sep 17 00:00:00 2001 From: CWX Date: Sat, 15 Feb 2025 21:19:03 +0000 Subject: [PATCH 1/2] Add Special 40 Degree fuel to Xmas blacklist --- project/src/services/SeasonalEventService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index a2f7da272..e189a314c 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -86,6 +86,7 @@ export class SeasonalEventService { ItemTpl.FACECOVER_GRINCH_MASK, ItemTpl.FACECOVER_HARE_MASK, ItemTpl.FACECOVER_AYBOLIT_MASK, + ItemTpl.BARTER_SPECIAL_40DEGREE_FUEL ]; } From 0a486d139c1ee25e6b6c2f1b72ef6ef6e70a8aec Mon Sep 17 00:00:00 2001 From: sgtlaggy <8661717+sgtlaggy@users.noreply.github.com> Date: Sat, 15 Feb 2025 23:31:29 -0800 Subject: [PATCH 2/2] Fix typos qeust -> quest --- project/src/controllers/HideoutController.ts | 2 +- project/src/controllers/InventoryController.ts | 2 +- project/src/controllers/ProfileController.ts | 2 +- project/src/controllers/QuestController.ts | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/project/src/controllers/HideoutController.ts b/project/src/controllers/HideoutController.ts index 6a7179f62..a649cdbd1 100644 --- a/project/src/controllers/HideoutController.ts +++ b/project/src/controllers/HideoutController.ts @@ -428,7 +428,7 @@ export class HideoutController { * Handle HideoutPutItemsInAreaSlots * Create item in hideout slot item array, remove item from player inventory * @param pmcData Profile data - * @param addItemToHideoutRequest reqeust from client to place item in area slot + * @param addItemToHideoutRequest request from client to place item in area slot * @param sessionID Session id * @returns IItemEventRouterResponse object */ diff --git a/project/src/controllers/InventoryController.ts b/project/src/controllers/InventoryController.ts index 45f39986b..3ddcdf6d6 100644 --- a/project/src/controllers/InventoryController.ts +++ b/project/src/controllers/InventoryController.ts @@ -522,7 +522,7 @@ export class InventoryController { * Bind an inventory item to the quick access menu at bottom of player screen * Handle bind event * @param pmcData Player profile - * @param bindRequest Reqeust object + * @param bindRequest Request object * @param sessionID Session id * @returns IItemEventRouterResponse */ diff --git a/project/src/controllers/ProfileController.ts b/project/src/controllers/ProfileController.ts index c2767333c..fd5f30976 100644 --- a/project/src/controllers/ProfileController.ts +++ b/project/src/controllers/ProfileController.ts @@ -97,7 +97,7 @@ export class ProfileController { /** * Handle client/game/profile/create - * @param info Client reqeust object + * @param info Client request object * @param sessionID Player id * @returns Profiles _id value */ diff --git a/project/src/controllers/QuestController.ts b/project/src/controllers/QuestController.ts index 46f729ebc..84fd32c5f 100644 --- a/project/src/controllers/QuestController.ts +++ b/project/src/controllers/QuestController.ts @@ -158,7 +158,7 @@ export class QuestController { for (const condition of questConditions) { if (pmcData.TaskConditionCounters[condition.id]) { this.logger.error( - `Unable to add new task condition counter: ${condition.conditionType} for qeust: ${questId} to profile: ${pmcData.sessionId} as it already exists:`, + `Unable to add new task condition counter: ${condition.conditionType} for quest: ${questId} to profile: ${pmcData.sessionId} as it already exists:`, ); } @@ -476,7 +476,7 @@ export class QuestController { /** * Handle /client/game/profile/items/moving - QuestFail * @param pmcData Pmc profile - * @param request Fail qeust request + * @param request Fail quest request * @param sessionID Session id * @returns IItemEventRouterResponse */