aboutsummaryrefslogtreecommitdiff
path: root/bot/deploy-command.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-23 01:39:11 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-23 01:39:11 -0400
commitd7c46a9eae28046bb26da182abc298dc18ed5a10 (patch)
treea1f9955a757b150b88ed5398ef851ab2d1d4a46b /bot/deploy-command.js
parentb60e681998a456adecb93b5fe04b66ad4ac9abb6 (diff)
downloadAleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.gz
AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.bz2
AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.zip
Replacing Astro with Next.JS; Prefix warning; Consistent env vars
Diffstat (limited to 'bot/deploy-command.js')
-rw-r--r--bot/deploy-command.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/deploy-command.js b/bot/deploy-command.js
index b2403a1..725fd5c 100644
--- a/bot/deploy-command.js
+++ b/bot/deploy-command.js
@@ -10,7 +10,7 @@ for (const file of commandFiles) {
commands.push(command.data.toJSON());
}
-const rest = new REST().setToken(process.env.token);
+const rest = new REST().setToken(process.env.TOKEN);
// and deploy your commands!
(async() => {
@@ -19,7 +19,7 @@ const rest = new REST().setToken(process.env.token);
// The put method is used to fully refresh all commands in the guild with the current set
const data = await rest.put(
- Routes.applicationCommands(process.env.clientID),
+ Routes.applicationCommands(process.env.CLIENT_ID),
{ body: commands }
);