diff --git a/game-server/app/services/actionPointService.ts b/game-server/app/services/actionPointService.ts index d532832c4..c027b6e0d 100644 --- a/game-server/app/services/actionPointService.ts +++ b/game-server/app/services/actionPointService.ts @@ -54,9 +54,9 @@ function getApWithDataAp(roleId: string, ip: string, lv: number, dataAp: ActionP result = { ap, maxAp, refTime, apRemainTime, apMaxRemainTime, isOver: false, buyTimes, buyRefTime, apBefore }; } } - if(result.ap > oldAp) { - reportTAEvent(roleId, TA_EVENT.AP_GET, { change_count: result.ap - oldAp, change_after: result.ap, change_reason: ITEM_CHANGE_REASON.AP_RECOVERY }) - } + // if(result.ap > oldAp) { + // reportTAEvent(roleId, TA_EVENT.AP_GET, { change_count: result.ap - oldAp, change_after: result.ap, change_reason: ITEM_CHANGE_REASON.AP_RECOVERY }) + // } return fromGetAp?result: pick(result, ['ap', 'maxAp', 'apRemainTime', 'apMaxRemainTime', 'buyTimes', 'apBefore']); }