forked from GitHub/dbot
ok the regex was broke
This commit is contained in:
parent
e62bacfa98
commit
85f4747dcb
@ -3,11 +3,15 @@ var youAre = function(dbot) {
|
||||
|
||||
return {
|
||||
'listener': function(data) {
|
||||
var num = Math.floor(Math.random()*11);
|
||||
var key = data.message.match(/ is|are ([\d\w\s']*),?\.?and?/);
|
||||
var num = Math.floor(Math.random()*6);
|
||||
var key = data.message.match(/(is|are) ([\d\w\s']*),?\.?/);
|
||||
|
||||
if(num == 1 && key != undefined) {
|
||||
dbot.say(data.channel, data.user + ': You\'re ' + key[1]);
|
||||
if(key[2].indexOf('and') !== -1) {
|
||||
key[2] = key[2].split('and')[0];
|
||||
} // TODO: fix the regex to do this. i hate regex
|
||||
|
||||
dbot.say(data.channel, data.user + ': You\'re ' + key[2]);
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user