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: don't set IsNew on CrewShipWeapons (#1682)

this indicator doesn't fully work for them as it seems the client doesn't clear it, so I assume they're not supposed to have it Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1682 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

850a0735
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +1 -1
Modified src/services/inventoryService.ts +1 -1
@@ -1066,7 +1066,7 @@ export const addEquipment = (
1066 1066 Configs: [],
1067 1067 XP: 0,
1068 1068 ModularParts: modularParts,
1069 IsNew: true
1069 IsNew: category != "CrewShipWeapons" ? true : undefined
1070 1070 },
1071 1071 defaultOverwrites
1072 1072 );