problem with slash commands handler

const fs = require('fs');
const {
REST
} = require('@discordjs/rest');
const {
Routes
} = require('discord-api-types/v9');
const {
clientId
} = require('./config.json');
const t = require('./config.json');

const commands = [];
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));

for (const file of commandFiles) {
const command = require(`./commands/${file}`);
commands.push(command.data.toJSON());
}

const rest = new REST({
version: '9'
}).setToken(t.token);

rest.put(Routes.applicationCommands(clientId), {
body: commands
})
.then(() => console.log('Successfully registered application commands!'))
.catch(console.error);
const fs = require('fs');
const {
REST
} = require('@discordjs/rest');
const {
Routes
} = require('discord-api-types/v9');
const {
clientId
} = require('./config.json');
const t = require('./config.json');

const commands = [];
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));

for (const file of commandFiles) {
const command = require(`./commands/${file}`);
commands.push(command.data.toJSON());
}

const rest = new REST({
version: '9'
}).setToken(t.token);

rest.put(Routes.applicationCommands(clientId), {
body: commands
})
.then(() => console.log('Successfully registered application commands!'))
.catch(console.error);
why my slashCommands isn't working?
12 Replies
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Chadoxi
Chadoxi2y ago
actually the bot need to console "succesfully registered..." but nothing
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Chadoxi
Chadoxi2y ago
no
Chadoxi
Chadoxi2y ago
but I catch error too but no error
Chadoxi
Chadoxi2y ago
I think its not working anymore
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Chadoxi
Chadoxi2y ago
13.8.1
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Chadoxi
Chadoxi2y ago
okay no nothing anymore
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Chadoxi
Chadoxi2y ago
no errors same thing oh I fixed this its working lol