3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 12:59:34 +01:00
dbot/modules/modehate.js

18 lines
356 B
JavaScript
Raw Normal View History

2011-10-12 19:09:55 +02:00
var modehate = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
if(dbot.db.modehate.include(data.user)) {
2011-10-12 19:21:38 +02:00
dbot.instance.send('KICK', data.channel, data.user, 'gtfo');
2011-10-12 19:09:55 +02:00
}
},
2011-10-12 22:25:42 +02:00
'on': 'MODE'
2011-10-12 19:09:55 +02:00
};
};
exports.fetch = function(dbot) {
return modehate(dbot);
};