Comment improvements

This commit is contained in:
Dev 2024-02-01 13:31:36 +00:00
parent 5f500655be
commit 6032573815
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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[];
}