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) { this.listener = function(event) {
var match = event.message.match(/^i'?( a)?m (an? )?([^ ]+)/i); var match = event.message.match(/^i'?( a)?m (an? )?([^ ]+)/i);
if(match && event.channel == '#april') { 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() { setTimeout(function() {
event.reply('Hi ' + match[2] + ', I\'m tripbot!'); event.reply('Hi ' + match[3] + ', I\'m tripbot!');
}, 1000); }, 1000);
} }
} }