From 46476d4c771a36ba68fddd83483fa8447d6d2191 Mon Sep 17 00:00:00 2001 From: luying Date: Fri, 21 Jul 2023 16:10:33 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=E5=86=9B=E5=9B=A2):=20?= =?UTF-8?q?=E6=AF=8F=E5=91=A8=E7=BB=93=E7=AE=97=E6=97=B6=E9=97=B4=E7=94=B1?= =?UTF-8?q?0=E7=82=B9=E6=94=B9=E4=B8=BA5=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- game-server/app/services/timeTaskService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game-server/app/services/timeTaskService.ts b/game-server/app/services/timeTaskService.ts index 61efea27a..b963116f3 100644 --- a/game-server/app/services/timeTaskService.ts +++ b/game-server/app/services/timeTaskService.ts @@ -77,7 +77,7 @@ export async function init() { await setPvpSeasonSchedule(); // 周功勋结算任务 - guildWeeklyJobId = scheduleJob('settleGuildWeekly', '0 0 0 * * 1', settleGuildWeekly); + guildWeeklyJobId = scheduleJob('settleGuildWeekly', '0 0 5 * * 1', settleGuildWeekly); // 每5分钟汇报在线玩家在线情况 scheduleJob('reportOnline', '0 0/5 * * * *', reportOnlineSchedule);