test
This commit is contained in:
parent
f836533cf8
commit
47fc954de9
9
index.js
9
index.js
@ -6,7 +6,14 @@ const update = require('./displayer.js');
|
|||||||
const clean = require('./cleaner.js');
|
const clean = require('./cleaner.js');
|
||||||
const { Client, GatewayIntentBits, Collection, Events, Partials } = 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 client = new Client({ intents:
|
||||||
|
[
|
||||||
|
GatewayIntentBits.GuildMembers,
|
||||||
|
GatewayIntentBits.GuildMessages,
|
||||||
|
GatewayIntentBits.GuildMessageReactions,
|
||||||
|
],
|
||||||
|
partials: [Partials.Message, Partials.Channel, Partials.Reaction],
|
||||||
|
});
|
||||||
const args = process.argv;
|
const args = process.argv;
|
||||||
const token = args[2].toString();
|
const token = args[2].toString();
|
||||||
const pterodactyl = args[3].toString();
|
const pterodactyl = args[3].toString();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user