From cc6887bbb54fb7d6ba7375e1af12729d5aae6d42 Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 14 Sep 2023 20:56:02 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=E7=A8=B7=E4=B8=8B=E5=AD=A6?= =?UTF-8?q?=E5=AE=AB2006=E5=9C=A3=E7=89=A9=E4=B8=8D=E7=94=9F=E6=95=88):?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/battle/rougeEffectService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game-server/app/services/battle/rougeEffectService.ts b/game-server/app/services/battle/rougeEffectService.ts index 28db5b900..075ba10be 100644 --- a/game-server/app/services/battle/rougeEffectService.ts +++ b/game-server/app/services/battle/rougeEffectService.ts @@ -211,7 +211,7 @@ export class RougeEffect { if (newRandom && newRandom.length > 0) { let cards = getRandEelm(newRandom, randomNum); - cards.forEach(async cur => { this.updateCardMap.set(cur.cardCode, cur), await this.updateCharaCards(cur, cardCode, cur.cardId); }); + cards.forEach(async cur => { this.updateCardMap.set(cur.cardCode, cur), await this.updateCharaCards(cur, cur.cardCode, cur.cardId); }); pushCards.push(...cards); this.updateHolyMapUseCount(this.holyMap.get(cardCode));