diff --git a/game-server/app/services/log/memoryLogService.ts b/game-server/app/services/log/memoryLogService.ts index e0c7109fd..3697bb253 100644 --- a/game-server/app/services/log/memoryLogService.ts +++ b/game-server/app/services/log/memoryLogService.ts @@ -79,7 +79,10 @@ async function _savePvpSeasonMemory() { export async function savePvpSeasonMemory() { let data = { pvpSeasonNum: pinus.app.get('pvpSeasonNum'), - pvpSeasonEndTime: pinus.app.get('pvpSeasonEndTime') + pvpSeasonStartTime: pinus.app.get('pvpSeasonStartTime'), + pvpSeasonEndTime: pinus.app.get('pvpSeasonEndTime'), + pvpSeasonRewardTime: pinus.app.get('pvpSeasonRewardTime'), + pvpSettleSeasonNum: pinus.app.get('pvpSettleSeasonNum') } await saveMemoryLog(pinus.app.getServerId(), 'pvpSeason', JSON.stringify(data)); }