diff --git a/commands/warnings.js b/commands/warnings.js index b2ceb74..4a4e3df 100644 --- a/commands/warnings.js +++ b/commands/warnings.js @@ -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.`); }); }