From 1c253d25cb1d35aa987d76e07806999c562712d6 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 2 Mar 2025 16:24:26 -0500 Subject: Bringing more features from 2.x; ESLint; API --- bot/src/events/ClientReady.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bot/src/events/ClientReady.js') diff --git a/bot/src/events/ClientReady.js b/bot/src/events/ClientReady.js index 06b5cce..c3c6055 100644 --- a/bot/src/events/ClientReady.js +++ b/bot/src/events/ClientReady.js @@ -1,4 +1,4 @@ -import { Events } from "discord.js"; +import { Events } from 'discord.js'; import { readFileSync } from 'node:fs'; import { activities as activity } from '../storage/activities.js'; @@ -28,9 +28,9 @@ export default { botActivity(client); setInterval(function() { - botActivity(); + botActivity(client); }, 200000); } -} +}; -- cgit v1.2.3