From 1b50f94d8e166797ec71ca4d349d44cfb4e3b0c7 Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sun, 18 Sep 2011 18:20:50 +0100 Subject: [PATCH] nobody loves --- modules/quotes.js | 2 +- run.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/quotes.js b/modules/quotes.js index b2f0116..86e749c 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -11,7 +11,7 @@ var quotes = function(dbot) { if(quotes.hasOwnProperty(key)) { dbot.say(data.channel, key + ': ' + quotes[key].random()); } else { - dbot.say(data.channel, 'No quotes under ' + key); + dbot.say(data.channel, 'Nobody loves ' + key); } } }, diff --git a/run.js b/run.js index 8b1d94c..920075a 100644 --- a/run.js +++ b/run.js @@ -95,7 +95,7 @@ DBot.prototype.reloadModules = function() { if(this.db.quoteArrs.hasOwnProperty(key)) { this.say(data.channel, key + ': ' + this.db.quoteArrs[key].random()); } else { - this.say(data.channel, 'No quotes under ' + key); + this.say(data.channel, 'Nobody loves ' + key); } } }