mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 14:55:40 +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 logger = require('../logging.js');
|
||||||
var UserBan = require('../models/UserBan.js');
|
var UserBan = require('../models/UserBan.js');
|
||||||
|
|
||||||
exports.roles = ['Admins', 'Moderators', 'Secret', 'CitraBot'];
|
exports.roles = ['Admins', 'Moderators', 'CitraBot'];
|
||||||
exports.command = function(message) {
|
exports.command = function(message) {
|
||||||
message.mentions.users.map((user) => {
|
message.mentions.users.map((user) => {
|
||||||
var count = app.warnings.filter(x => x.id == user.id && !x.cleared).length || 0;
|
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.`);
|
message.channel.sendMessage(`${user} ${user.username}, You will now be banned from this channel.`);
|
||||||
logger.info(`${message.author.toString()} has banned ${user.toString()}.`);
|
logger.info(`${message.author.toString()} has banned ${user.toString()} ${user} ${user.username}.`);
|
||||||
app.logChannel.sendMessage(`${message.author} has banned ${user} [${count} + 1].`);
|
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));
|
app.bans.push(new UserBan(user.id, user.username, message.author.id, message.author.username, count));
|
||||||
|
|
||||||
message.guild.member(user).ban().catch(function (error) {
|
message.guild.member(user).ban().catch(function (error) {
|
||||||
app.logChannel.sendMessage(`Error banning ${user.toString()}`);
|
app.logChannel.sendMessage(`Error banning ${user} ${user.username}`);
|
||||||
logger.error(`Error banning ${user.toString()}.`, error);
|
logger.error(`Error banning ${user.toString()} ${user} ${user.username}.`, error);
|
||||||
});
|
});
|
||||||
data.flushBans();
|
data.flushBans();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user