forked from cosmic/scythe
1
0
Fork 0
This commit is contained in:
rainydevzz 2025-03-20 00:18:43 -07:00
parent b09e71a591
commit db3ce4cdc6
1 changed files with 1 additions and 1 deletions

View File

@ -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;