From e73d6cd0bfb0273edbbfb4632ad64adc45d1d81a Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 10 Mar 2022 19:16:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=98=E5=8A=9B=EF=BC=9AgetHeroDetail?= =?UTF-8?q?=E5=A4=9A=E7=BC=A9=E4=BA=86=E4=B8=80=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/roleField/friend.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/shared/domain/roleField/friend.ts b/shared/domain/roleField/friend.ts index 592c2bc5a..68e9ec8c8 100644 --- a/shared/domain/roleField/friend.ts +++ b/shared/domain/roleField/friend.ts @@ -4,7 +4,6 @@ import * as friendUtil from '../../pubUtils/friendUtil' import { FRIEND_RELATION_TYPE } from "../../consts"; import { EPlace, HeroType, Stone } from "../../db/Hero"; import { JewelType, RandSe } from "../../db/Jewel"; -import { reduceCe } from "../../pubUtils/util"; export class FriendParams { roleId: string; @@ -195,7 +194,7 @@ export class HeroDetailParam { constructor(hero: HeroType) { this.roleId = hero.roleId; this.hid = hero.hid; - this.ce = reduceCe(hero.ce); + this.ce = hero.ce; this.lv = hero.lv; this.star = hero.star; this.colorStar = hero.colorStar;