From 329645143a796cc87ecd6e9ad0b5620c655731d5 Mon Sep 17 00:00:00 2001 From: luying Date: Mon, 26 Apr 2021 19:23:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E8=A1=8C=E6=A6=9C=EF=BC=9A=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E6=80=BB=E6=A6=9C=E5=A4=B4=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/rank.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/shared/domain/rank.ts b/shared/domain/rank.ts index c75dd1ede..37d5a390b 100644 --- a/shared/domain/rank.ts +++ b/shared/domain/rank.ts @@ -292,6 +292,9 @@ export class GeneralRankParamBattle { skinId: number = 0; num: number; received: number[]; + head: number; + frame: number; + spine: number; constructor(type: number, rankInfo: RoleRankInfo, hero: HeroUpdate, received: number[]) { this.type = type; @@ -299,6 +302,9 @@ export class GeneralRankParamBattle { this.roleName = rankInfo.roleName; this.guildName = rankInfo.guildName; this.num = rankInfo.num; + this.head = rankInfo.head; + this.frame = rankInfo.frame; + this.spine = rankInfo.spine; if(hero) { this.hid = hero.hid; let curSkin = hero.skins.find(cur => cur.enable);