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); } } }