From 0a75dc0f70b33786c6506c2d5fbf8630c696f345 Mon Sep 17 00:00:00 2001 From: chris062689 Date: Sun, 29 Jan 2017 15:45:50 -0500 Subject: [PATCH] Fixed list of warnings returning length instead of the actual list. --- commands/clearWarnings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/clearWarnings.js b/commands/clearWarnings.js index f1a6fa6..95f72c3 100644 --- a/commands/clearWarnings.js +++ b/commands/clearWarnings.js @@ -5,7 +5,7 @@ var logger = require('../logging.js'); exports.roles = ['Admins', 'Moderators']; exports.command = function(message) { message.mentions.users.map((user) => { - var count = app.warnings.filter(x => x.id == user.id && !x.cleared).length; + var count = app.warnings.filter(x => x.id == user.id && !x.cleared); if (count != null && count.length > 0) { count.forEach(warning => warning.cleared = true); data.flushWarnings();