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

chore: legacy node tags for isEligibleForCreditReward (#3881)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3881 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>

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

代码差异

1 个文件 +4 -0
Modified src/services/missionInventoryUpdateService.ts +4 -0
@@ -1230,9 +1230,13 @@ const isEligibleForCreditReward = async (
1230 1230 return (
1231 1231 node.missionType != "MT_JUNCTION" &&
1232 1232 node.missionType != "MT_LANDSCAPE" &&
1233 missions.Tag != "EventNode761" && // the index
1234 missions.Tag != "EventNode762" && // the index
1235 missions.Tag != "EventNode763" && // the index
1233 1236 missions.Tag != "SolNode761" && // the index
1234 1237 missions.Tag != "SolNode762" && // the index
1235 1238 missions.Tag != "SolNode763" && // the index
1239 missions.Tag != "CrewBattleNode56" && // free flight pre 2019.12.13.15.04
1236 1240 missions.Tag != "CrewBattleNode556" // free flight
1237 1241 );
1238 1242 };