Haha-Yes/commands/admin/prune.js
2018-09-09 21:32:08 +02:00

28 lines
No EOL
894 B
JavaScript

const { Command } = require('discord.js-commando');
module.exports = class PruneCommand extends Command {
constructor(client) {
super(client, {
name: 'prune',
aliases: ['purge'],
group: 'admin',
memberName: 'prune',
description: 'Bulk delete messages.',
clientPermissions: ['MANAGE_MESSAGES'],
userPermissions: ['MANAGE_MESSAGES'],
args: [
{
key: 'amount',
prompt: 'How many messages would you like to delete?',
type: 'integer',
}
]
});
}
async run(message, { amount }) {
if (amount < 2 || amount > 100) {
return message.reply('you need to input a number between 2 and 100.');
}
message.channel.bulkDelete(amount, true);
}
};