Fixed the warning length count in total warnings.

This commit is contained in:
chris062689 2017-04-07 22:34:56 -04:00
parent af4fb4d2fc
commit 8027cf6296
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ 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.`);
message.channel.sendMessage(`${user}, you have ${warnings.length} total warnings.`);
});
}