initial music stuff

This commit is contained in:
ReaperOfVeriod
2026-01-31 02:50:20 +01:00
parent e262300def
commit f00cbb2091
9 changed files with 535 additions and 35 deletions
+6 -1
View File
@@ -3,7 +3,12 @@ const path = require('node:path');
const { Client, Collection, Events, GatewayIntentBits, MessageFlags } = require('discord.js');
const { token } = require('./config.json');
const client = new Client({ intents: [GatewayIntentBits.Guilds] });
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildVoiceStates,
],
});
client.cooldowns = new Collection();
client.commands = new Collection();