返回提交历史
Modified
src/services/inventoryService.ts
+1
-1
XFEstudio/SpaceNinjaServer
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
代码差异
1 个文件
+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
);