XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

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

Closes #1770 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1782 Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>

daacbf6f
AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
提交于

代码差异

1 个文件 +2 -1
Modified src/controllers/custom/getItemListsController.ts +2 -1
@@ -69,7 +69,8 @@ const getItemListsController: RequestHandler = (req, response) => {
69 69 if (item.productCategory != "SpecialItems") {
70 70 res[item.productCategory].push({
71 71 uniqueName,
72 name: getString(item.name, lang)
72 name: getString(item.name, lang),
73 exalted: item.exalted
73 74 });
74 75 }
75 76 }