From 4ff450c9f2c7aa508c4e3d983073f2613505a36a Mon Sep 17 00:00:00 2001 From: Sainan Date: Sat, 12 Oct 2024 00:56:54 +0200 Subject: [PATCH] fix(webui): not being able to add ayatan sculptures --- src/controllers/custom/getItemListsController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/custom/getItemListsController.ts b/src/controllers/custom/getItemListsController.ts index 101f4692..8e360ca9 100644 --- a/src/controllers/custom/getItemListsController.ts +++ b/src/controllers/custom/getItemListsController.ts @@ -36,7 +36,7 @@ const getItemListsController: RequestHandler = (_req, res) => { } for (const [uniqueName, item] of Object.entries(ExportResources)) { miscitems.push({ - uniqueName: "MiscItems:" + uniqueName, + uniqueName: item.productCategory + ":" + uniqueName, name: getEnglishString(item.name) }); }