mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 09:45:39 +01:00
Updated ban code for proper logging of username in message.
This commit is contained in:
parent
3c7dd523f0
commit
399e484c58
@ -4,20 +4,20 @@ var data = require('../data.js');
|
||||
var logger = require('../logging.js');
|
||||
var UserBan = require('../models/UserBan.js');
|
||||
|
||||
exports.roles = ['Admins', 'Moderators', 'Secret', 'CitraBot'];
|
||||
exports.roles = ['Admins', 'Moderators', 'CitraBot'];
|
||||
exports.command = function(message) {
|
||||
message.mentions.users.map((user) => {
|
||||
var count = app.warnings.filter(x => x.id == user.id && !x.cleared).length || 0;
|
||||
|
||||
message.channel.sendMessage(`${user} You will now be banned from this channel.`);
|
||||
logger.info(`${message.author.toString()} has banned ${user.toString()}.`);
|
||||
app.logChannel.sendMessage(`${message.author} has banned ${user} [${count} + 1].`);
|
||||
message.channel.sendMessage(`${user} ${user.username}, You will now be banned from this channel.`);
|
||||
logger.info(`${message.author.toString()} has banned ${user.toString()} ${user} ${user.username}.`);
|
||||
app.logChannel.sendMessage(`${message.author} has banned ${user} ${user.username} [${count}].`);
|
||||
|
||||
app.bans.push(new UserBan(user.id, user.username, message.author.id, message.author.username, count));
|
||||
|
||||
message.guild.member(user).ban().catch(function (error) {
|
||||
app.logChannel.sendMessage(`Error banning ${user.toString()}`);
|
||||
logger.error(`Error banning ${user.toString()}.`, error);
|
||||
app.logChannel.sendMessage(`Error banning ${user} ${user.username}`);
|
||||
logger.error(`Error banning ${user.toString()} ${user} ${user.username}.`, error);
|
||||
});
|
||||
data.flushBans();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user