✏️ forgot config.bot.clientId

This commit is contained in:
Axel Olausson Holtenäs 2022-03-06 14:16:26 +01:00
parent 91eba3988f
commit c926ddd4ce
No known key found for this signature in database
GPG key ID: E3AE7E194AE017ED

View file

@ -23,7 +23,7 @@ module.exports = async () => {
const rest = new REST({ version: '9' }).setToken(config.bot.token);
await rest.put(
Routes.applicationCommands(clientId),
Routes.applicationCommands(config.bot.clientId),
{ body: commands },
);