From 18cf68198886bbab677b955fcfecdace4be8d3cc Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 18 Aug 2022 20:23:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8D=E5=B0=86=E6=93=82=E5=8F=B0=EF=BC=9A?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=AF=B9=E6=89=8B=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/battleField/ladder.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shared/domain/battleField/ladder.ts b/shared/domain/battleField/ladder.ts index f29e6ad35..f670694b2 100644 --- a/shared/domain/battleField/ladder.ts +++ b/shared/domain/battleField/ladder.ts @@ -349,6 +349,9 @@ export class LadderOppDetailHeroReturn { this.y = warJson.y; this.var = warJson.var; this.hide = warJson.hide; + this.skill = warJson.skill; + this.seid = warJson.seid; + this.spine = warJson.spine; if(defensHero) { this.outIndex = defensHero.order; @@ -359,6 +362,8 @@ export class LadderOppDetailHeroReturn { this.skinId = hero.skinId; this.actorName = hero.hName; this.lv = hero.lv; + this.star = hero.star; + this.colorStar = hero.colorStar; } } }