forked from GitHub/dbot
winner = correction fix
This commit is contained in:
parent
c707849980
commit
aa7fc99144
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user