From 6470dff6535b9a5b45e4fc536db5300f02c6be74 Mon Sep 17 00:00:00 2001 From: Kevin Huff Date: Sun, 18 Feb 2024 22:53:59 -0600 Subject: [PATCH] fix prompt --- src/discordBot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/discordBot.js b/src/discordBot.js index d126d73..2138e24 100644 --- a/src/discordBot.js +++ b/src/discordBot.js @@ -281,7 +281,7 @@ client.on("voiceStateUpdate", (oldMember, newMember) => { client.login(process.env.DISCORD_TOKEN); -// Schedule a task to run every day at 9 AM +/* cron.schedule('45 * * * *', async () => { const channel = client.channels.cache.get('1208646869698347119'); if(channel) { @@ -318,6 +318,6 @@ client.on('messageReactionAdd', async (reaction, user) => { } } checkin_db.push(lastCheckinMessageId, user.tag); -}); +});*/ export { client };