From 60325738159d12c00ac1de2255afe97cbf2c745d Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 1 Feb 2024 13:31:36 +0000 Subject: [PATCH] Comment improvements --- project/src/controllers/InventoryController.ts | 2 +- .../models/eft/inventory/IOpenRandomLootContainerRequestData.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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[]; }