From b038ecf63fa3be38303a1cde87acf10ff3cf280e Mon Sep 17 00:00:00 2001 From: reality Date: Tue, 9 Apr 2013 22:15:17 +0000 Subject: [PATCH] no blank at end --- modules/flashy/flashy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/flashy/flashy.js b/modules/flashy/flashy.js index f4ccb30..8195591 100644 --- a/modules/flashy/flashy.js +++ b/modules/flashy/flashy.js @@ -28,7 +28,7 @@ var flashy = function(dbot) { 'path': 'flashy/' + colour + '/' + encodeURIComponent(text) })); } else { - var possibleColours = _.keys(this.colourMap).join(', ').slice(0, -2) + '.'; + var possibleColours = _.keys(this.colourMap).join(', ') + '.'; event.reply('No such colour, brah. Available colours are: ' + possibleColours); } }