3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00
This commit is contained in:
Luke Slater 2011-10-17 10:56:49 +01:00
parent 1f07302f7a
commit fe6dad5df6

View File

@ -5,7 +5,7 @@ var youAre = function(dbot) {
'listener': function(data) {
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, 50) && data.user != 'aisbot') {
if(key && key[2] != "" && Number.prototype.chanceIn(1, 25) && data.user != 'aisbot') {
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
}
},