This commit is contained in:
reality 2016-02-19 18:55:43 +00:00
parent c63c17d9d5
commit 991411f28d

View File

@ -185,25 +185,25 @@ var commands = function(dbot) {
event.reply('[\u00036reports\u000f]');
_.each(sTimes, function(time) {
if(items[time].type == 'report') {
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
}
});
event.reply('[\u00037quiets\u000f]');
_.each(sTimes, function(time) {
if(items[time].type == 'quiet') {
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
}
});
event.reply('[\u00035warns\u000f]');
_.each(sTimes, function(time) {
if(items[time].type == 'warn') {
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
}
});
event.reply('[\u00034bans\u000f]');
_.each(sTimes, function(time) {
_.each(sTimes, function(time, n) {
if(items[time].type == 'ban' || items[time].type == 'unban') {
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
event.reply('[' + n + '][' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
}
});
} else {