From db3ce4cdc6b3634d359c1e016b3ada2b0cbd8b98 Mon Sep 17 00:00:00 2001 From: rainydevzz Date: Thu, 20 Mar 2025 00:18:43 -0700 Subject: [PATCH] fix bump --- src/utils/bump.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/bump.ts b/src/utils/bump.ts index a80ef0d..9fb27ba 100644 --- a/src/utils/bump.ts +++ b/src/utils/bump.ts @@ -8,7 +8,7 @@ export const bumpRemind = async (client: Client) => { const f = await Bun.file("bump.json").text(); const data = JSON.parse(f); if (data["bump"]) { - if (Date.now() - data["bump"] >= 60 * 120) { + if (Date.now() - data["bump"] >= 60 * 120 * 1000) { const channel = client.channels.cache.get( Bun.env.BOT_CHANNEL, ) as TextChannel;