This commit is contained in:
Louis Mazin 2025-07-01 16:07:14 +02:00
parent f836533cf8
commit 47fc954de9

View File

@ -6,7 +6,14 @@ const update = require('./displayer.js');
const clean = require('./cleaner.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 client = new Client({ intents:
[
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildMessageReactions,
],
partials: [Partials.Message, Partials.Channel, Partials.Reaction],
});
const args = process.argv;
const token = args[2].toString();
const pterodactyl = args[3].toString();