mirror of
https://github.com/danbulant/Shasha
synced 2026-05-21 13:08:51 +00:00
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
const { oneLine } = require('common-tags');
|
|
const Command = require('../../node_modules/@iceprod/discord.js-commando/src/commands/base');
|
|
|
|
module.exports = class EnableCommandCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'enable',
|
|
aliases: ['enable-command', 'cmd-on', 'command-on'],
|
|
group: 'owner',
|
|
memberName: 'enable',
|
|
description: 'Enables a command or command group.',
|
|
details: oneLine`
|
|
The argument must be the name/ID (partial or whole) of a command or command group.
|
|
Only administrators may use this command.
|
|
`,
|
|
examples: ['enable util', 'enable Utility', 'enable prefix'],
|
|
guarded: true,
|
|
|
|
args: [
|
|
{
|
|
key: 'cmdOrGrp',
|
|
label: 'command/group',
|
|
prompt: 'Which command or group would you like to enable?',
|
|
type: 'group|command'
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
hasPermission(msg) {
|
|
if(!msg.guild) return this.client.isOwner(msg.author);
|
|
return msg.member.permissions.has('ADMINISTRATOR') || this.client.isOwner(msg.author);
|
|
}
|
|
|
|
run(msg, args) {
|
|
const group = args.cmdOrGrp.group;
|
|
if(args.cmdOrGrp.isEnabledIn(msg.guild, true)) {
|
|
return msg.reply(
|
|
`The \`${args.cmdOrGrp.name}\` ${args.cmdOrGrp.group ? 'command' : 'group'} is already enabled${
|
|
group && !group.isEnabledIn(msg.guild) ?
|
|
`, but the \`${group.name}\` group is disabled, so it still can't be used` :
|
|
''
|
|
}.`
|
|
);
|
|
}
|
|
args.cmdOrGrp.setEnabledIn(msg.guild, true);
|
|
return msg.reply(
|
|
`Enabled the \`${args.cmdOrGrp.name}\` ${group ? 'command' : 'group'}${
|
|
group && !group.isEnabledIn(msg.guild) ?
|
|
`, but the \`${group.name}\` group is disabled, so it still can't be used` :
|
|
''
|
|
}.`
|
|
);
|
|
}
|
|
};
|