Merge pull request #12 from chris062689/master

Fixed the warning length count in total warnings.
This commit is contained in:
Christopher J. Gilbert 2017-04-07 22:35:43 -04:00 committed by GitHub
commit e49c21a07c

View File

@ -4,6 +4,6 @@ var logger = require('../logging.js');
exports.command = function(message) { exports.command = function(message) {
message.mentions.users.map((user) => { message.mentions.users.map((user) => {
var warnings = app.warnings.filter(x => x.id == user.id && !x.cleared); var warnings = app.warnings.filter(x => x.id == user.id && !x.cleared);
message.channel.sendMessage(`${user}, you have ${count.warnings} total warnings.`); message.channel.sendMessage(`${user}, you have ${warnings.length} total warnings.`);
}); });
} }