youare less likely

This commit is contained in:
Luke Slater 2011-12-25 10:41:02 +00:00
parent a16ed7e7dd
commit 3ba0fbd030

View File

@ -3,7 +3,7 @@ var youAre = function(dbot) {
'listener': function(data) { 'listener': function(data) {
var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5); var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
if(key && key[2] != "" && Number.prototype.chanceIn(1, 25) && data.user != 'aisbot') { if(key && key[2] != "" && Number.prototype.chanceIn(1, 100) && data.user != 'aisbot') {
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.'); dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
} }
}, },