From 29310da3f200d86e89fbeed3a2427c42af1bb6f7 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Sun, 6 Aug 2017 10:16:01 -0700 Subject: [PATCH] Update data closer to the top of the hour This will help make Salmon Run times show up sooner. --- src/splatoon/run.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/splatoon/run.js b/src/splatoon/run.js index 08160c6..18fa351 100644 --- a/src/splatoon/run.js +++ b/src/splatoon/run.js @@ -3,7 +3,7 @@ const splatnet = require('./splatnet'); console.info('Starting periodic tasks...'); -// Run every day at 2min 30sec after the hour -new CronJob('30 2 * * * *', () => { +// Run every day at 0min 30sec after the hour +new CronJob('30 0 * * * *', () => { splatnet.update(); }, null, true);