feat(webui): add resource drones & their blueprints via "add items" #1137
@ -3,6 +3,7 @@ import { getDict, getItemName, getString } from "@/src/services/itemDataService"
|
||||
import {
|
||||
ExportArcanes,
|
||||
ExportAvionics,
|
||||
ExportDrones,
|
||||
ExportGear,
|
||||
ExportMisc,
|
||||
ExportRecipes,
|
||||
@ -153,6 +154,12 @@ const getItemListsController: RequestHandler = (req, response) => {
|
||||
}
|
||||
}
|
||||
}
|
||||
for (const [uniqueName, item] of Object.entries(ExportDrones)) {
|
||||
res.miscitems.push({
|
||||
uniqueName: uniqueName,
|
||||
name: getString(item.name, lang)
|
||||
});
|
||||
}
|
||||
|
||||
res.mods = [];
|
||||
for (const [uniqueName, upgrade] of Object.entries(ExportUpgrades)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user