diff --git a/commands/clearWarnings.js b/commands/clearWarnings.js index f81935b..f1a6fa6 100644 --- a/commands/clearWarnings.js +++ b/commands/clearWarnings.js @@ -5,12 +5,15 @@ 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 || 0; + var count = app.warnings.filter(x => x.id == user.id && !x.cleared).length; + if (count != null && count.length > 0) { + count.forEach(warning => warning.cleared = true); + data.flushWarnings(); + message.channel.sendMessage(`${user}, your warnings have been cleared.`); + } else { + message.channel.sendMessage(`${user}, you have no warnings to clear.`); + } - count.forEach(warning => warning.cleared = true); - data.flushWarnings(); - - message.channel.sendMessage(`${user}, your warnings have been cleared.`); logger.info(`${message.author.toString()} has cleared all warnings for ${user.toString()} [${count}].`); app.logChannel.sendMessage(`${message.author.toString()} has cleared all warnings for ${user.toString()} [${count}].`); });