fix extractor drone blueprints not being available in webui add items
This commit is contained in:
parent
0ffa9c6bc4
commit
2009e5466d
@ -20,6 +20,7 @@ import {
|
||||
dict_zh,
|
||||
ExportArcanes,
|
||||
ExportCustoms,
|
||||
ExportDrones,
|
||||
ExportGear,
|
||||
ExportKeys,
|
||||
ExportRecipes,
|
||||
@ -87,6 +88,9 @@ export const getItemName = (uniqueName: string): string | undefined => {
|
||||
if (uniqueName in ExportCustoms) {
|
||||
return ExportCustoms[uniqueName].name;
|
||||
}
|
||||
if (uniqueName in ExportDrones) {
|
||||
return ExportDrones[uniqueName].name;
|
||||
}
|
||||
if (uniqueName in ExportKeys) {
|
||||
return ExportKeys[uniqueName].name;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user