fix(webui): add exalted array for KubrowPets ItemLists #1782

Merged
Sainan merged 1 commits from AMelonInsideLemon/SpaceNinjaServer:webui-kubrow-exalted into main 2025-04-22 10:00:59 -07:00

View File

@ -68,7 +68,8 @@ const getItemListsController: RequestHandler = (req, response) => {
if (item.productCategory != "SpecialItems") { if (item.productCategory != "SpecialItems") {
res[item.productCategory].push({ res[item.productCategory].push({
uniqueName, uniqueName,
name: getString(item.name, lang) name: getString(item.name, lang),
exalted: item.exalted
}); });
} }
} }