From cf1382d88c5e3298923c8cb243b7bc5751e68b53 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 2 Mar 2025 22:27:57 -0500 Subject: Ported more commands; Made embed colour a const; Cleanup --- bot/src/bot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bot/src/bot.js') diff --git a/bot/src/bot.js b/bot/src/bot.js index 07b13a8..7f1f41a 100644 --- a/bot/src/bot.js +++ b/bot/src/bot.js @@ -2,12 +2,12 @@ import { Client, GatewayIntentBits } from 'discord.js'; import 'dotenv/config'; import { event } from './handlers/event.js'; import { command } from './handlers/command.js'; -import { apiServer } from '../api/server.js'; +import { apiServer } from './api/server.js'; const client = new Client({ intents: [GatewayIntentBits.Guilds] }); -command(client).then(() => console.log('[i] Command module loaded')); -event(client).then(() => console.log('[i] Event module loaded')); +command(client).then(() => console.log('[>] Command module loaded')); +event(client).then(() => console.log('[>] Event module loaded')); apiServer(client); if (process.argv.indexOf('--beta') === -1) { -- cgit v1.2.3