Command-fix/commands/warnings.js

13 lines
432 B
JavaScript
Raw Normal View History

2016-12-07 22:52:37 -05:00
var app = require('../app.js');
var logger = require('../logging.js');
exports.command = function(message) {
message.mentions.users.map((user) => {
var count = app.warnings.filter(function(x) { return x.id == user.id && !x.cleared }).length || 0;
message.channel.sendMessage(`${user}, you have ${count} warnings.`).catch(function (error) {
logger.error('Error sending #admin-log message.', error);
});
});
}