mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 02:45:39 +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.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}].`);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user