diff --git a/commands/sendhelp.js b/commands/sendhelp.js new file mode 100644 index 0000000..991312e --- /dev/null +++ b/commands/sendhelp.js @@ -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)); + } +} \ No newline at end of file