mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-11 11:21:16 +02:00
updoot
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { stripIndents } = require('common-tags');
|
||||
|
||||
module.exports = class SettingHelpCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'setting-help',
|
||||
group: 'util',
|
||||
memberName: 'setting-help',
|
||||
description: 'View help on how to set up settings.',
|
||||
guildOnly: true,
|
||||
guarded: true
|
||||
});
|
||||
}
|
||||
|
||||
run(msg) {
|
||||
return msg.say(stripIndents`
|
||||
**Invite Guard:** Place \`<inviteguard>\` in your default channel's topic. (${msg.guild.defaultChannel})
|
||||
**Mod Log Channel:** Place \`<modlog>\` in a channel's topic.
|
||||
**Portal Channel:** Place \`<portal>\` in a channel's topic.
|
||||
**Member Log Channel:** Place \`<memberlog>\` in a channel's topic.
|
||||
**Custom Join Message:** Place \`<joinmessage>message</joinmessage>\` in the Member Log's Channel.
|
||||
**Custom Leave Message:** Place \`<leavemessage>message</leavemessage>\` in the Member Log's Channel.
|
||||
`);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user