mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-21 22:45:37 +01:00
Fixed count.forEach being undefined. Presented a message when the user had no warnings.
This commit is contained in:
parent
f9896bdd15
commit
0273e57e7f
@ -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}].`);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user