From f836533cf844745200b15d2ffbb706d939d8b168 Mon Sep 17 00:00:00 2001 From: Louis Mazin Date: Tue, 1 Jul 2025 16:06:24 +0200 Subject: [PATCH] test --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index d87eb71..91f3022 100644 --- a/index.js +++ b/index.js @@ -4,7 +4,7 @@ const path = require('node:path'); const deploy = require('./deploy_command.js') const update = require('./displayer.js'); const clean = require('./cleaner.js'); -const { Client, GatewayIntentBits, Collection, Events } = require('discord.js'); +const { Client, GatewayIntentBits, Collection, Events, Partials } = require('discord.js'); const client = new Client({ intents: [GatewayIntentBits.GuildMembers,GatewayIntentBits.GuildMessages,GatewayIntentBits.GuildMessageReactions,GatewayIntentBits.DirectMessageReactions,GatewayIntentBits.MessageContent] }); const args = process.argv; @@ -94,7 +94,6 @@ client.on(Events.MessageReactionAdd, async (reaction, user) => { }); client.on(Events.InteractionCreate, async interaction => { - console.log(interaction); if (!interaction.isChatInputCommand()) return; const command = interaction.client.commands.get(interaction.commandName);