Options Command

This commit is contained in:
Dragon Fire
2020-01-11 16:03:19 -05:00
parent 301ab82be2
commit f3450df9c8
3 changed files with 28 additions and 3 deletions
+24
View File
@@ -0,0 +1,24 @@
const Command = require('../../structures/Command');
const { stripIndents } = require('common-tags');
module.exports = class OptionsCommand extends Command {
constructor(client) {
super(client, {
name: 'options',
aliases: ['options-list'],
group: 'util',
memberName: 'options',
description: 'Responds with a list of server options.',
guarded: true
});
}
run(msg) {
return msg.say(stripIndents`
__**Server Options**__
Place the option in the appropriate channel's topic to use.
\`<xiao:disable-leave>\` Disables leave messages (System Channel).
`);
}
};