fix(webui): add exalted array for KubrowPets ItemLists (#1782)
All checks were successful
Build Docker image / docker (push) Successful in 42s
Build / build (push) Successful in 1m34s

Closes #1770

Reviewed-on: #1782
Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
This commit is contained in:
AMelonInsideLemon 2025-04-22 10:00:58 -07:00 committed by Sainan
parent 32bb6d4ccb
commit daacbf6f7b

View File

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