From 976cf99e580409be9be1b40ff19d980485aeb0e2 Mon Sep 17 00:00:00 2001 From: Caleb Rogers Date: Thu, 22 Sep 2022 01:01:29 +0800 Subject: [PATCH] Update app.js comment with proper file extension (#12) Commands are defined in `commands.js`, not `commands.json`. --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 3b52716..5dd9398 100644 --- a/app.js +++ b/app.js @@ -178,7 +178,7 @@ app.post('/interactions', async function (req, res) { app.listen(PORT, () => { console.log('Listening on port', PORT); - // Check if guild commands from commands.json are installed (if not, install them) + // Check if guild commands from commands.js are installed (if not, install them) HasGuildCommands(process.env.APP_ID, process.env.GUILD_ID, [ TEST_COMMAND, CHALLENGE_COMMAND,