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));