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;