3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 22:39:26 +01:00

karma fix

This commit is contained in:
Luke Slater 2011-10-20 11:56:43 +01:00
parent 824e5381e0
commit ad3a3c48b1

View File

@ -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] + '.');
}