From dfb17dc107a86f8015bb14a660102028dc255469 Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Tue, 6 Mar 2012 14:44:38 +0000 Subject: [PATCH] change spelling correction order in command ~ --- run.js | 44 +++++++++++++++++++++----------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/run.js b/run.js index fc29667..022d4bf 100644 --- a/run.js +++ b/run.js @@ -114,30 +114,28 @@ DBot.prototype.reloadModules = function() { } else { var q = data.message.valMatch(/^~([\d\w\s-]*)/, 2); if(q) { - // See if it's similar to anything - var winnerDistance = Infinity; - var winner = false; - for(var commandName in this.commands) { - var distance = String.prototype.distance(params[0], commandName); - if(distance < winnerDistance) { - winner = commandName; - winnerDistance = distance; - } - } - - if(winnerDistance < 3) { - this.say(data.channel, 'Did you mean ' + winner + '? Learn to type, hippie!'); - } else { // See if there's anything in quotes - if(this.db.bans['*'].include(data.user)) { - this.say(data.channel, data.user + - ' is banned from using this command. Commence incineration.'); + if(this.db.bans['*'].include(data.user)) { + this.say(data.channel, data.user + + ' is banned from using this command. Commence incineration.'); + } else { + q[1] = q[1].trim(); + key = this.cleanNick(q[1]) + if(this.db.quoteArrs.hasOwnProperty(key)) { + this.say(data.channel, q[1] + ': ' + this.db.quoteArrs[key].random()); } else { - q[1] = q[1].trim(); - key = this.cleanNick(q[1]) - if(this.db.quoteArrs.hasOwnProperty(key)) { - this.say(data.channel, q[1] + ': ' + this.db.quoteArrs[key].random()); - } else { - this.say(data.channel, 'Nobody loves ' + q[1]); + // See if it's similar to anything + var winnerDistance = Infinity; + var winner = false; + for(var commandName in this.commands) { + var distance = String.prototype.distance(params[0], commandName); + if(distance < winnerDistance) { + winner = commandName; + winnerDistance = distance; + } + } + + if(winnerDistance < 3) { + this.say(data.channel, 'Did you mean ' + winner + '? Learn to type, hippie!'); } } }