From ad3a3c48b1f7a811ce1d0b2faa1482f75f85aadd Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Thu, 20 Oct 2011 11:56:43 +0100 Subject: [PATCH] karma fix --- modules/youare.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/youare.js b/modules/youare.js index 06663b5..7401a11 100644 --- a/modules/youare.js +++ b/modules/youare.js @@ -5,9 +5,6 @@ var youAre = function(dbot) { 'listener': function(data) { var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5); - console.log(key[1]); - console.log(key[2]); - console.log(key[3]); if(key && key[2] != "" && Number.prototype.chanceIn(1, 25) && data.user != 'aisbot') { dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.'); }