From 172eb11577e433a0fac5693765f1afde9853cd25 Mon Sep 17 00:00:00 2001 From: 7cc5c4f330d47060 Date: Wed, 20 Nov 2024 01:55:10 -0500 Subject: [PATCH] Change checkLog interval --- plugins/chatlog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chatlog.js b/plugins/chatlog.js index ada7293..a2446d9 100755 --- a/plugins/chatlog.js +++ b/plugins/chatlog.js @@ -17,7 +17,7 @@ const checkLog = () => { } } -setInterval(checkLog, 3600000) // Runs once every hour, +setInterval(checkLog, 7200000) // Runs once every two hours, checkLog() // and at bot startup. export default function load (b) {