3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
This commit is contained in:
reality 2015-03-31 18:51:53 +00:00
parent e393fd6fdb
commit a07daddccc

View File

@ -2,9 +2,9 @@ var april = function(dbot) {
this.listener = function(event) {
var match = event.message.match(/^i'?( a)?m (an? )?([^ ]+)/i);
if(match && event.channel == '#april') {
dbot.say(event.server, 'operserv', 'svsnick ' + event.user + ' ' + match[2]);
dbot.say(event.server, 'operserv', 'svsnick ' + event.user + ' ' + match[3]);
setTimeout(function() {
event.reply('Hi ' + match[2] + ', I\'m tripbot!');
event.reply('Hi ' + match[3] + ', I\'m tripbot!');
}, 1000);
}
}