From 381a78e31134e77074c1edf01d77cb663ced0fd2 Mon Sep 17 00:00:00 2001 From: reality Date: Tue, 9 Apr 2013 22:07:11 +0000 Subject: [PATCH] forgot event.reply (flashy) --- modules/flashy/flashy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/flashy/flashy.js b/modules/flashy/flashy.js index 70c31fb..26b2f07 100644 --- a/modules/flashy/flashy.js +++ b/modules/flashy/flashy.js @@ -18,11 +18,11 @@ var flashy = function(dbot) { var text = event.input[2]; if(_.has(this.colourMap, colour)) { - dbot.t('url', { + event.reply(dbot.t('url', { 'host': dbot.config.web.webHost, 'port': dbot.config.web.webPort, 'path': 'flashy/' + colour + '/' + encodeURIComponent(text) - }); + })); } else { event.reply('no such colour brah'); }