From 62900670cb92e1f302a34e0a4ef55a0ff56309ed Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sat, 10 Mar 2012 18:02:03 +0000 Subject: [PATCH 1/2] nobody --- modules/quotes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/quotes.js b/modules/quotes.js index 5353fd8..bb583db 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -12,7 +12,7 @@ var quotes = function(dbot) { if(quotes.hasOwnProperty(key)) { dbot.say(data.channel, q[1] + ': ' + dbot.interpolatedQuote(key)); } else { - dbot.say(data.channel, 'No one loves ' + q[1]); + dbot.say(data.channel, 'Nobody loves ' + q[1]); } } }, From bd85694018290e6b92a7433964ad94a8505793ec Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sat, 10 Mar 2012 18:13:00 +0000 Subject: [PATCH 2/2] we can't make him too friendly now can we --- modules/quotes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/quotes.js b/modules/quotes.js index dcc9a28..cedd678 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -218,9 +218,9 @@ var quotes = function(dbot) { } } if(pruned.length > 0) { - dbot.say(data.channel, "Pruned empty quote categories: " + pruned.join(", ")); + dbot.say(data.channel, "Pruning empty quote categories: " + pruned.join(", ")); } else { - dbot.say(data.channel, "No empty quote categories. You're good to go!"); + dbot.say(data.channel, "No empty quote categories. Commence incineration."); } } };