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; } } }