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

SpaceNinjaServer

A simple server for a small space ninja game

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

XFEstudio/SpaceNinjaServer

chore: use correct icon of TC26 baro (#4418)

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

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

代码差异

2 个文件 +6 -2
Modified src/controllers/api/inventoryController.ts +2 -1
@@ -508,7 +508,8 @@ export const getInventoryResponse = async (
508 508 "/Lotus/Types/Items/Events/TennoConRelay2022EarlyAccess",
509 509 "/Lotus/Types/Items/Events/TennoConRelay2023EarlyAccess",
510 510 "/Lotus/Types/Items/Events/TennoConRelay2024EarlyAccess",
511 "/Lotus/Types/Items/Events/TennoConRelay2025EarlyAccess"
511 "/Lotus/Types/Items/Events/TennoConRelay2025EarlyAccess",
512 "/Lotus/Types/Items/Events/TennoConRelay2026EarlyAccess"
512 513 ].forEach(uniqueName => {
513 514 if (!inventoryResponse.FlavourItems.some(x => x.ItemType == uniqueName)) {
514 515 inventoryResponse.FlavourItems.push({ ItemType: uniqueName });
Modified src/services/worldStateService.ts +4 -1
@@ -2125,7 +2125,10 @@ export const getWorldState = (
2125 2125 //"Faction": "FC_GRINEER",
2126 2126 Desc: "/Lotus/Language/Locations/RelayStationTennoCon",
2127 2127 ToolTip: "/Lotus/Language/Locations/RelayStationTennoConDesc",
2128 Icon: "/Lotus/Interface/Icons/Categories/IconTennoConSigil.png",
2128 Icon:
2129 buildVersionInt >= gameToBuildVersionInt["43.0.0"]
2130 ? "/Lotus/Interface/Icons/Categories/IconTennoConBaroVip.png"
2131 : "/Lotus/Interface/Icons/Categories/IconTennoConSigil.png",
2129 2132 Tag: "TennoConRelay",
2130 2133 Node: "TennoConHUB2"
2131 2134 });