mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 16:25:42 +01:00
13 lines
432 B
JavaScript
13 lines
432 B
JavaScript
|
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);
|
||
|
});
|
||
|
});
|
||
|
}
|