This commit is contained in:
reality 2014-10-31 04:27:08 +00:00
parent 0c8d0c8143
commit 1b67b04630

View File

@ -16,12 +16,16 @@ var words = function(dbot) {
'~like': function(event) {
var query = event.params[1];
this.wn.word(query, {}, function(err, word) {
if(!err && word[0]) {
if(!err && word) {
word.related({
'limit': 10
}, function(err, related) {
event.reply('Words related to ' + query + ': ' +
related[0].words.join(', ') + '.');
if(related[0]) {
event.reply('Words related to ' + query + ': ' +
related[0].words.join(', ') + '.');
} else {
event.reply('No similar words found.');
}
});
} else {
event.reply('Unknown word.');