Cleaned up code based on feedback.

This commit is contained in:
Daniel Dowling 2013-01-31 15:41:16 +00:00
parent c3e569be41
commit bf2cff6eba

View File

@ -41,10 +41,8 @@ var link = function(dbot) {
data = JSON.parse(body);
comicId = data.num;
comicId = (Math.floor(Math.random() * comicId) + 1);
event.message = '~xkcd ' + comicId;
event.action = 'PRIVMSG';
event.params = event.message.split(' ');
dbot.instance.emit(event);
event.params[1] = comicId;
dbot.commands['~xkcd'](event);
}
});
}else {