dbot/modules/modehate.js
Luke Slater 62ef1d36e1 test
2011-10-12 18:21:38 +01:00

18 lines
354 B
JavaScript

var modehate = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
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);
};