Skip to content

Commit

Permalink
Merge branch '3.11.0-dev' into feat-botgen-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
chompDev authored Feb 17, 2025
2 parents 2c0bd0f + ca4810c commit 206b922
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion project/src/controllers/HideoutController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion project/src/controllers/InventoryController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
2 changes: 1 addition & 1 deletion project/src/controllers/ProfileController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
4 changes: 2 additions & 2 deletions project/src/controllers/QuestController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:`,
);
}

Expand Down Expand Up @@ -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
*/
Expand Down
1 change: 1 addition & 0 deletions project/src/services/SeasonalEventService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export class SeasonalEventService {
ItemTpl.FACECOVER_GRINCH_MASK,
ItemTpl.FACECOVER_HARE_MASK,
ItemTpl.FACECOVER_AYBOLIT_MASK,
ItemTpl.BARTER_SPECIAL_40DEGREE_FUEL
];
}

Expand Down

0 comments on commit 206b922

Please sign in to comment.