From 279e8c7554bc6e53aebdce1307b91443ec6c508e Mon Sep 17 00:00:00 2001 From: luying Date: Wed, 19 Oct 2022 13:28:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=EF=BC=9Apvp=E8=B5=9B?= =?UTF-8?q?=E5=AD=A3=E4=BF=9D=E5=AD=98=E5=86=85=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/log/memoryLogService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)); }