From a09c988199e029d8077ef63f65268989633936c2 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 17 Feb 2023 14:51:36 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=E6=88=98=E5=8A=9B):=20?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E5=A5=BD=E5=8F=8B=E6=88=98=E5=8A=9B=E8=AE=A1?= =?UTF-8?q?=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/playerCeService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game-server/app/services/playerCeService.ts b/game-server/app/services/playerCeService.ts index 24a17a52c..a2a2c02fa 100644 --- a/game-server/app/services/playerCeService.ts +++ b/game-server/app/services/playerCeService.ts @@ -524,7 +524,7 @@ export async function getHeroesAttributes(roleId: string) { let cal = new AttributeCal(); let heroAttr = heroAttrs.find(cur => cur.hid == hid); if(heroAttr) cal.setLv(heroAttr.lv); - cal.setByWarJson(hid, attrs); + cal.setByCeArr(attrs); attrByHid.set(hid, cal); } return attrByHid;