new command to send help in current channel

This commit is contained in:
= 2021-07-24 20:49:28 -04:00
parent 3849dee47e
commit a5a4f4bf96
1 changed files with 10 additions and 0 deletions

10
commands/sendhelp.js Normal file
View File

@ -0,0 +1,10 @@
const fn = require('../functions.js');
module.exports = {
name: 'sendhelp',
description: 'Send the help message to the current channel',
permissions: 'BOT_MOD', // To be implemented later
execute(message, file) {
message.channel.send(fn.createHelpEmbed(message));
}
}