mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 15:45:37 +01:00
Fixed the warning length count in total warnings.
This commit is contained in:
parent
af4fb4d2fc
commit
8027cf6296
@ -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.`);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user