diff --git a/shared/pubUtils/playerCe.ts b/shared/pubUtils/playerCe.ts index 4a54601ab..1be2c0004 100644 --- a/shared/pubUtils/playerCe.ts +++ b/shared/pubUtils/playerCe.ts @@ -1119,8 +1119,8 @@ function calTeraphAssistAttr(role: RoleType, update: RoleUpdate, id: number) { oldVal = dicOldTeraph.assiAttrValue.get(attrId); } - let ratioUp = val - oldVal; - updateRoleAttr(roleAttrs, attrId, { inc: { ratioUp } }); + let fixUp = (val - oldVal) * HERO_CE_RATIO; + updateRoleAttr(roleAttrs, attrId, { inc: { fixUp } }); }); return roleAttrs; } \ No newline at end of file