Files
xiao/commands/util/options.js
T
2020-02-29 21:56:27 -05:00

27 lines
739 B
JavaScript

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).
\`<xiao:phone>\` Allows this channel to recieve phone calls.
\`<xiao:portal>\` Marks the channel as a portal channel for \`portal-send\`.
`);
}
};