This commit is contained in:
reality 2015-04-25 10:28:47 +00:00
parent 2820dfb0c7
commit 0108de389b

View File

@ -126,11 +126,10 @@ var commands = function(dbot) {
if(quiet != 0 || warn != 0 || report != 0) {
event.reply(user.primaryNick + ' has been warned ' + warn + ' times, quieted ' + quiet + ' times, and reported ' + report + ' times.');
async.eachSeries(_.keys(items).sort(function(a, b) {
_.each(_.keys(items).sort(function(a, b) {
return moment(a).unix() - moment(b).unix();
}), function(time, next) {
}), function(time) {
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]);
setTimeout(next, 500);
});
if(latest_ban.time != 0) {