From 8027cf629664ac3bbd29b83bb1471371a2adc4bd Mon Sep 17 00:00:00 2001 From: chris062689 Date: Fri, 7 Apr 2017 22:34:56 -0400 Subject: [PATCH] Fixed the warning length count in total warnings. --- commands/warnings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.`); }); }