winner = correction fix

This commit is contained in:
Luke Slater 2011-10-26 20:52:53 +01:00
parent c707849980
commit aa7fc99144

View File

@ -22,9 +22,11 @@ var spelling = function(dbot) {
console.log(winner + ' ' + winnerDistance); console.log(winner + ' ' + winnerDistance);
if(winnerDistance < 3) { if(winnerDistance < 3) {
if(winner !== correction) {
var fix = last[data.channel][data.user].replace(winner, correction); var fix = last[data.channel][data.user].replace(winner, correction);
dbot.say(data.channel, data.user + ': ' + fix); dbot.say(data.channel, data.user + ': ' + fix);
} }
}
} else { } else {
if(last.hasOwnProperty(data.channel)) { if(last.hasOwnProperty(data.channel)) {
last[data.channel][data.user] = data.message; last[data.channel][data.user] = data.message;