Command-fix/commands/warnings.js

10 lines
324 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) => {
2017-01-29 15:46:54 -05:00
var warnings = app.warnings.filter(x => x.id == user.id && !x.cleared);
message.channel.sendMessage(`${user}, you have ${warnings.length} total warnings.`);
2016-12-07 22:52:37 -05:00
});
}