diff --git a/index.js b/index.js index 83cecf6..e96bd85 100644 --- a/index.js +++ b/index.js @@ -1,12 +1,14 @@ +process.title = 'Giveaway Child'; + const fs = require("fs"); const Discord = require("discord.js"); const client = new Discord.Client({ - intents: [ - Discord.Intents.FLAGS.GUILDS, - Discord.Intents.FLAGS.GUILD_MEMBERS, - Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS, - ], + intents: [ + Discord.Intents.FLAGS.GUILDS, + Discord.Intents.FLAGS.GUILD_MEMBERS, + Discord.Intents.FLAGS.GUILD_MESSAGE_REACTIONS, + ], }); const config = require("./config.json"); @@ -25,12 +27,12 @@ client.giveawaysManager = new GiveawaysManager(client, { lastChance: { enabled: true, content: "⚠️ **LAST CHANCE TO ENTER !** ⚠️", - threshold: 10000, + threshold: 5000, embedColor: "#FF0000", }, }, }); -// We not have a client.giveaways property to manage our giveaways +// We now have a client.giveawaysManager property to manage our giveaways! client.giveawaysManager.on( "giveawayReactionAdded", @@ -77,7 +79,7 @@ fs.readdir("./commands/", (_err, files) => { name: c.name, description: c.description, options: c.options, - type: Discord.ApplicationCommandType.ChatInput, + type: "CHAT_INPUT", })), { debug: true,