diff --git a/project/src/controllers/InventoryController.ts b/project/src/controllers/InventoryController.ts index c1d0d54c..71c9fe49 100644 --- a/project/src/controllers/InventoryController.ts +++ b/project/src/controllers/InventoryController.ts @@ -956,7 +956,7 @@ export class InventoryController return output; } - // Find and delete opened item from player inventory + // Find and delete opened container item from player inventory this.inventoryHelper.removeItem(pmcData, body.item, sessionID, output); return output; diff --git a/project/src/models/eft/inventory/IOpenRandomLootContainerRequestData.ts b/project/src/models/eft/inventory/IOpenRandomLootContainerRequestData.ts index 589ff034..f98ed623 100644 --- a/project/src/models/eft/inventory/IOpenRandomLootContainerRequestData.ts +++ b/project/src/models/eft/inventory/IOpenRandomLootContainerRequestData.ts @@ -3,7 +3,7 @@ import { IInventoryBaseActionRequestData } from "@spt-aki/models/eft/inventory/I export interface IOpenRandomLootContainerRequestData extends IInventoryBaseActionRequestData { Action: "OpenRandomLootContainer"; - /** Container item opened */ + /** Container item id being opened */ item: string; to: To[]; }