mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 04:55:41 +01:00
Merge pull request #12 from chris062689/master
Fixed the warning length count in total warnings.
This commit is contained in:
commit
e49c21a07c
@ -4,6 +4,6 @@ var logger = require('../logging.js');
|
||||
exports.command = function(message) {
|
||||
message.mentions.users.map((user) => {
|
||||
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.`);
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user