You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
const {Command} = require('../../lib.js')
|
|
|
|
|
|
class ban extends Command{
|
|
constructor(client){
|
|
super(client, {
|
|
name: 'ban',
|
|
group:'admin',
|
|
needsAdmin: true,
|
|
description: 'Bans a user from the server.'
|
|
|
|
})
|
|
}
|
|
async run(message, args) {
|
|
// Get the user mentioned in the message
|
|
const user = message.mentions.users.first();
|
|
// Check if the user mentioned exists and is not a bot
|
|
if (!user || user.bot) {
|
|
return new ErrorMessage(this.client).send(ErrorType.Arguments, message, ['User is a bot, or you sent something wrong.'])
|
|
}
|
|
|
|
// Ban the user
|
|
try {
|
|
await user.ban();
|
|
return message.channel.send(`${user.tag} was banned from the server.`);
|
|
} catch (error) {
|
|
return console.log(`Ban: An error occurred: ${error.message}`);
|
|
}
|
|
}
|
|
|
|
}module.exports = ban; |