dbot/modules/modehate.js
2011-10-12 21:29:05 +01:00

19 lines
400 B
JavaScript

var modehate = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
console.log('caught modehate');
if(dbot.db.modehate.include(data.user)) {
dbot.instance.send('KICK', data.channel, data.user, 'gtfo');
}
},
'on': 'MODE'
};
};
exports.fetch = function(dbot) {
return modehate(dbot);
};