🐞 fix(gvg): 修正获取对手阵容时的战力显示

This commit is contained in:
liangtongchuan
2023-02-24 15:24:34 +08:00
parent 0271ac726a
commit 22f4730546

View File

@@ -155,7 +155,7 @@ export class GVGProduceHandler {
if(!hisVestigeRank) return resResult(STATUS.GVG_VESTIGE_TARGET_NOT_FOUND);
let hids = hisVestigeRank.lineup?.map(cur => cur.actorId)||[];
let heroes = await HeroModel.findByHidRange(hids, roleId, 'hid skinId quality star colorStar lv');
let heroes = await HeroModel.findByHidRange(hids, roleId, 'hid skinId quality star colorStar lv ce');
const { leagueCode, name } = myLeague;
result.setPlayer(dicGVGVestige, role, heroes, serverNames, name, leagueCode);
}