From d6a3e64b79589c882eee58d43b443335999be463 Mon Sep 17 00:00:00 2001 From: luying Date: Wed, 14 Sep 2022 13:41:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=B8=80=E4=B8=8B=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E4=BD=BF=E7=94=A8=E7=9A=84=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/warRewardService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game-server/app/services/warRewardService.ts b/game-server/app/services/warRewardService.ts index a573f0906..764ca757d 100644 --- a/game-server/app/services/warRewardService.ts +++ b/game-server/app/services/warRewardService.ts @@ -53,7 +53,7 @@ export class WarReward { public setFixReward(reward: RewardInter[]) { for(let r of reward) { - console.log('#####setFixReward', JSON.stringify(r)); + // console.log('#####setFixReward', JSON.stringify(r)); this.fixReward.push(r); } } @@ -84,7 +84,7 @@ export class WarReward { if(!this.fixReward) return for(let i = 0; i < num; i++) { for(let obj of this.fixReward) { - console.log('##### handleFixReward', JSON.stringify(obj)); + // console.log('##### handleFixReward', JSON.stringify(obj)); this.rewards.push({type: BATTLE_REWARD_TYPE.FIX_REWARD, times: i +1, ...obj, count: obj.count }); } }