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