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