Add templates.file to .gitignore and update help command to send all commands

main
kry008 2024-05-23 22:27:07 +02:00
parent 8515157c57
commit cabb6a47a6
2 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
config.json
templates.file
node_modules
package-lock.json

View File

@ -89,7 +89,8 @@ module.exports = {
const command = getCommand(args[0]);
if(command === null)
{
message.channel.send('Command not found');
//send all commands
const commands = allCommandsNames();
return;
}
message.channel.send('Name: ' + command.name + '\nDescription: ' + command.description + '\nHelp: ' + command.help);
@ -98,7 +99,9 @@ module.exports = {
const command = getCommand(interaction.options.getString('command'));
if(command === null)
{
interaction.reply('Command not found');
//send all commands
const commands = allCommandsNames();
interaction.reply(commands);
return;
}
interaction.reply('Name: ' + command.name + '\nDescription: ' + command.description + '\nHelp: ' + command.help);