From 7d0162afff61abf1e5b9bc8949222eaa4b9edcd5 Mon Sep 17 00:00:00 2001 From: Douglas Gardner Date: Sat, 13 Apr 2013 22:40:35 +0000 Subject: [PATCH] slim down the normal announcement Specifying that images are non-animated each time isn't really required, and causes the string to be rather long. Stripping this implicit property makes it look a bit nicer. --- modules/imgur/imgur.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgur/imgur.js b/modules/imgur/imgur.js index b68f8ef..27209c1 100644 --- a/modules/imgur/imgur.js +++ b/modules/imgur/imgur.js @@ -20,7 +20,7 @@ var imgur = function(dbot) { if(imgData.animated) { info += 'an animated ' + imgData.type.split('/')[1] + ' with '; } else { - info += 'a non-animated ' + imgData.type.split('/')[1] + ' with '; + info += 'a ' + imgData.type.split('/')[1] + ' with '; } } else { info += 'an image with ';