From 8c4e83b6000b87caacfaa78d3f3e9968b5f21beb Mon Sep 17 00:00:00 2001 From: TheCodedProf Date: Sun, 19 Feb 2023 00:09:49 -0500 Subject: [PATCH] not at all --- src/utils/commandRegistration/register.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/commandRegistration/register.ts b/src/utils/commandRegistration/register.ts index 693ad00..a4ede3f 100644 --- a/src/utils/commandRegistration/register.ts +++ b/src/utils/commandRegistration/register.ts @@ -215,7 +215,7 @@ export default async function register() { } else { console.log(`${colors.blue}Registering commands in production mode${colors.none}`) const guild = await client.guilds.fetch(config.developmentGuildID); - await guild.commands.set([]); + await guild.commands.set([]); // TODO: Why isn't this removing guild commands? await client.application?.commands.set(commandList); } }