From 5d11fbf12d7dd59699eca74619d261f182df5ca7 Mon Sep 17 00:00:00 2001 From: Elijah R Date: Thu, 25 Jan 2024 22:16:04 -0500 Subject: [PATCH] forgot to uncomment that oopsies --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e7a7d01..21bc04c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -102,7 +102,7 @@ client.on('interactionCreate', async i => { }); async function main() { log("INFO", "Publishing slash commands..."); - //await rest.put(Routes.applicationCommands(config.DiscordClientID), {body: Commands}); + await rest.put(Routes.applicationCommands(config.DiscordClientID), {body: Commands}); client.login(config.DiscordToken); } main();