From f64d308bcd0556f7758bef4351e6ca325347cc99 Mon Sep 17 00:00:00 2001 From: liangtongchuan Date: Wed, 1 Mar 2023 19:47:26 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(battle):=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E5=AF=BB=E5=AE=9D=E4=BF=AE=E6=94=B9=E7=9A=84=E8=AF=AD?= =?UTF-8?q?=E6=B3=95=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/comBattleService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/game-server/app/services/comBattleService.ts b/game-server/app/services/comBattleService.ts index 3b49b3146..a53fa931d 100644 --- a/game-server/app/services/comBattleService.ts +++ b/game-server/app/services/comBattleService.ts @@ -207,6 +207,7 @@ export async function getAllAssistCnt(roleId: string) { let roleSt = team.roleStatus.find(st => st.roleId === roleId); return !roleSt.isFrd; }); + } return teams.length; }