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;