diff --git a/handler/index.js b/handler/index.js index f763673..3cff50e 100644 --- a/handler/index.js +++ b/handler/index.js @@ -27,11 +27,11 @@ module.exports = async (client) => { // Slash Commands Register client.on("ready", async () => { - // Register for a single guild - await client.guilds.cache.get("GUIDIDHERE").commands.set(arrayOfSlashCommands); + // // Register for a single guild + // await client.guilds.cache.get("GUIDIDHERE").commands.set(arrayOfSlashCommands); // Register for all the guilds the bot is in - // await client.application.commands.set(arrayOfSlashCommands); + await client.application.commands.set(arrayOfSlashCommands); }); };