We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29109b commit 1802ad4Copy full SHA for 1802ad4
src/register.ts
@@ -57,10 +57,10 @@ async function registerGuildCommands(
57
}
58
59
60
-const envLoadedFromProcess = loadEnv({}, false);
+const env = loadEnv({}, false);
61
62
registerGuildCommands(
63
- envLoadedFromProcess.DISCORD_TOKEN,
64
- envLoadedFromProcess.DISCORD_APPLICATION_ID,
65
- envLoadedFromProcess.DISCORD_GUILD_ID
+ env.DISCORD_TOKEN,
+ env.DISCORD_APPLICATION_ID,
+ env.DISCORD_GUILD_ID
66
);
0 commit comments