mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 08:25:39 +01:00
10 lines
317 B
JavaScript
10 lines
317 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(x => x.id == user.id && !x.cleared).length || 0;
|
|
message.channel.sendMessage(`${user}, you have ${count} warnings.`);
|
|
});
|
|
}
|