mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 14:45:39 +01:00
10 lines
323 B
JavaScript
10 lines
323 B
JavaScript
var app = require('../app.js');
|
|
var logger = require('../logging.js');
|
|
|
|
exports.command = function(message) {
|
|
message.mentions.users.map((user) => {
|
|
var warnings = app.warnings.filter(x => x.id == user.id && !x.cleared);
|
|
message.channel.sendMessage(`${user}, you have ${count.warnings} total warnings.`);
|
|
});
|
|
}
|