From 29b329bae6dad6eedf59838ae8e343f659bf5082 Mon Sep 17 00:00:00 2001 From: Danny Rorabaugh Date: Thu, 16 Nov 2023 08:44:29 -0500 Subject: [PATCH] Add comment --- src/goals/CharacterInventory/CharacterInventoryTypes.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/goals/CharacterInventory/CharacterInventoryTypes.ts b/src/goals/CharacterInventory/CharacterInventoryTypes.ts index ebdcd178a8..e727ed9a50 100644 --- a/src/goals/CharacterInventory/CharacterInventoryTypes.ts +++ b/src/goals/CharacterInventory/CharacterInventoryTypes.ts @@ -25,6 +25,8 @@ export interface CharInvData { inventory: string[][]; } +// CharInvStepData's inventory is unused, but is present in the database, +// so cannot be removed from frontend code without a database update. export interface CharInvStepData { inventory: string[]; }