From c16f65c5b88bc48896e1f83bdad65e05625a71c5 Mon Sep 17 00:00:00 2001 From: reality Date: Fri, 29 Jan 2016 18:03:22 +0000 Subject: [PATCH] i like colours --- modules/report/commands.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/report/commands.js b/modules/report/commands.js index 2932fd1..df3f884 100644 --- a/modules/report/commands.js +++ b/modules/report/commands.js @@ -138,25 +138,25 @@ var commands = function(dbot) { }); if(sTimes.length < 70) { - event.reply('[reports]'); + event.reply('[\u00034reports\u000f]'); _.each(sTimes, function(time) { if(items[time].type == 'report') { event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message); } }); - event.reply('[quiets]'); + 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('[warns]'); + 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('[bans]'); + event.reply('[\u00034bans\u000f]'); _.each(sTimes, function(time) { if(items[time].type == 'ban' || items[time].type == 'unban') { event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);