Command-fix/commands/warnings.js

10 lines
317 B
JavaScript
Raw Normal View History

2016-12-08 04:52:37 +01:00
var app = require('../app.js');
var logger = require('../logging.js');
exports.command = function(message) {
message.mentions.users.map((user) => {
2016-12-31 06:48:39 +01:00
var count = app.warnings.filter(x => x.id == user.id && !x.cleared).length || 0;
message.channel.sendMessage(`${user}, you have ${count} warnings.`);
2016-12-08 04:52:37 +01:00
});
}