diff --git a/commands/warnings.js b/commands/warnings.js index ecd03ec..b2ceb74 100644 --- a/commands/warnings.js +++ b/commands/warnings.js @@ -3,7 +3,7 @@ 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.`); + var warnings = app.warnings.filter(x => x.id == user.id && !x.cleared); + message.channel.sendMessage(`${user}, you have ${count.warnings} total warnings.`); }); }