3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

fixed up kick [#131]

This commit is contained in:
reality 2013-01-14 23:00:16 +00:00
parent 1d5fcf2f40
commit 7a6cab841e

View File

@ -50,12 +50,11 @@ var kick = function(dbot) {
}
};
return {
'name': 'kick',
'ignorable': false,
'commands': commands,
this.name = 'kick';
this.ignorable = false;
this.commands = commands;
'listener': function(event) {
this.listener = function(event) {
if(event.kickee == dbot.config.name) {
dbot.instance.join(event, event.channel);
event.reply(dbot.t('kicked_dbot', { 'botname': dbot.config.name }));
@ -79,11 +78,10 @@ var kick = function(dbot) {
'kicked': dbot.db.kickers[event.kickee]
}) + ')');
}
},
on: 'KICK'
};
this.on = 'KICK';
};
exports.fetch = function(dbot) {
return kick(dbot);
return new kick(dbot);
};