皮肤:周边相关功能影响

This commit is contained in:
luying
2021-10-19 14:26:21 +08:00
parent da5a43abba
commit 864f856c1c
16 changed files with 254 additions and 199 deletions
@@ -140,7 +140,7 @@ export class ExpeditionBattleHandler {
if (!preBattle) return resResult(STATUS.BATTLE_NEED_PREVIOUS_GK);
}
let { isOK, heroes } = await checkBattleHeroes(roleId, seqIds);
let { isOK, hids } = await checkBattleHeroes(roleId, seqIds);
if (!isOK) return resResult(STATUS.BATTLE_HERO_NOT_FOUND);
let expeditionWarRecord = await ExpeditionWarRecordModel.getRecordByCodeAndId(expeditionCode, expeditionId);
@@ -158,7 +158,7 @@ export class ExpeditionBattleHandler {
status: 0,
warName: warInfo.gk_name,
warType: warInfo.warType,
record: { heroes, seqIds }
record: { heroes: hids, seqIds }
}
}, true);