diff --git a/modules/youare/youare.js b/modules/youare/youare.js index ddb25e0..89fa4f3 100644 --- a/modules/youare/youare.js +++ b/modules/youare/youare.js @@ -1,19 +1,17 @@ var youAre = function(dbot) { - return { - 'name': 'youare', - 'ignorable': false, + this.name = 'youare'; + this.ignorable = false; - 'listener': function(event) { - var key = event.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5); + this.listener = function(event) { + var key = event.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5); - if(key && key[2] != "" && Number.prototype.chanceIn(1, 100) && event.user != 'aisbot') { - event.reply(event.user + ': You\'re ' + key[2] + '.'); - } - }, - 'on': 'PRIVMSG' - }; + if(key && key[2] != "" && Number.prototype.chanceIn(1, 100) && event.user != 'aisbot') { + event.reply(event.user + ': You\'re ' + key[2] + '.'); + } + }.bind(this); + this.on = 'PRIVMSG'; }; exports.fetch = function(dbot) { - return youAre(dbot); + return new youAre(dbot); };