diff --git a/shared/pubUtils/playerCe.ts b/shared/pubUtils/playerCe.ts index 78642d103..1f922bfc2 100644 --- a/shared/pubUtils/playerCe.ts +++ b/shared/pubUtils/playerCe.ts @@ -913,7 +913,7 @@ function calHeroCeWhenJewelOnOrOff(hero: HeroType, id: number, oldId: number) { for(let id of allIds) { let value = goodsAbility.get(id)||0; let oldValue = oldGoodsAbility.get(id)||0; - updateHeroAttr(heroAttrs, id, { inc: { equipUp: value - oldValue } }) + updateHeroAttr(heroAttrs, id, { inc: { equipUp: (value - oldValue) * HERO_CE_RATIO } }) } hero.attr = heroAttrs;