From da8c2979733e56efe19689f45539f5f96553303b Mon Sep 17 00:00:00 2001 From: reality Date: Fri, 19 Feb 2016 18:59:22 +0000 Subject: [PATCH] things --- modules/report/commands.js | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/modules/report/commands.js b/modules/report/commands.js index a07a482..fad9843 100644 --- a/modules/report/commands.js +++ b/modules/report/commands.js @@ -183,27 +183,35 @@ var commands = function(dbot) { if(sTimes.length < 70) { event.reply('[\u00036reports\u000f]'); - _.each(sTimes, function(time, n) { + var n = 0; + _.each(sTimes, function(time) { if(items[time].type == 'report') { event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message); + n++; } }); event.reply('[\u00037quiets\u000f]'); - _.each(sTimes, function(time, n) { + var n = 0; + _.each(sTimes, function(time) { if(items[time].type == 'quiet') { event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message); + n++; } }); event.reply('[\u00035warns\u000f]'); - _.each(sTimes, function(time, n) { + var n = 0; + _.each(sTimes, function(time) { if(items[time].type == 'warn') { event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message); + n++; } }); event.reply('[\u00034bans\u000f]'); - _.each(sTimes, function(time, n) { + var n = 0; + _.each(sTimes, function(time) { if(items[time].type == 'ban' || items[time].type == 'unban') { event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message); + n++; } }); } else {