Fixed count.forEach being undefined. Presented a message when the user had no warnings.

This commit is contained in:
chris062689 2017-01-15 12:38:31 -05:00
parent f9896bdd15
commit 0273e57e7f
1 changed files with 8 additions and 5 deletions

View File

@ -5,12 +5,15 @@ var logger = require('../logging.js');
exports.roles = ['Admins', 'Moderators']; exports.roles = ['Admins', 'Moderators'];
exports.command = function(message) { exports.command = function(message) {
message.mentions.users.map((user) => { 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}].`); 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}].`); app.logChannel.sendMessage(`${message.author.toString()} has cleared all warnings for ${user.toString()} [${count}].`);
}); });