Updated variable name for wearnings.

This commit is contained in:
chris062689 2017-01-29 15:46:54 -05:00
parent 0a75dc0f70
commit 8034d2667c
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ var logger = require('../logging.js');
exports.command = function(message) { exports.command = function(message) {
message.mentions.users.map((user) => { message.mentions.users.map((user) => {
var count = app.warnings.filter(x => x.id == user.id && !x.cleared).length || 0; var warnings = app.warnings.filter(x => x.id == user.id && !x.cleared);
message.channel.sendMessage(`${user}, you have ${count} warnings.`); message.channel.sendMessage(`${user}, you have ${count.warnings} total warnings.`);
}); });
} }