Hello, ! Logout
-+
Note: Changes made here will only be reflected in-game when the game re-downloads your inventory. Visiting the navigation should be the easiest way to trigger that.
+diff --git a/src/controllers/custom/getItemListsController.ts b/src/controllers/custom/getItemListsController.ts index ec768b83e..5eeacdc90 100644 --- a/src/controllers/custom/getItemListsController.ts +++ b/src/controllers/custom/getItemListsController.ts @@ -1,5 +1,5 @@ import { RequestHandler } from "express"; -import { MinItem, warframes, weapons } from "@/src/services/itemDataService"; +import { MinItem, warframes, weapons, items } from "@/src/services/itemDataService"; interface ListedItem { uniqueName: string; @@ -18,7 +18,8 @@ function reduceItems(items: MinItem[]): ListedItem[] { const getItemListsController: RequestHandler = (_req, res) => { res.json({ warframes: reduceItems(warframes), - weapons: reduceItems(weapons.filter(item => item.productCategory != "OperatorAmps")) + weapons: reduceItems(weapons.filter(item => item.productCategory != "OperatorAmps")), + miscitems: reduceItems(items.filter(item => item.category == "Misc" || item.category == "Resources")) }); }; diff --git a/static/webui/index.html b/static/webui/index.html index 780792eca..d3770b590 100644 --- a/static/webui/index.html +++ b/static/webui/index.html @@ -26,35 +26,43 @@
Hello, ! Logout
-+
Note: Changes made here will only be reflected in-game when the game re-downloads your inventory. Visiting the navigation should be the easiest way to trigger that.
+