From 5d5c9e9a4896e2673d4c97d45e48b9dc2395ad67 Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Thu, 22 Sep 2022 12:01:36 -0400 Subject: [PATCH] update --- handler/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }); };