forked from GitHub/dbot
mass deop protection
This commit is contained in:
parent
8a041bd17f
commit
18906bf940
@ -3,8 +3,10 @@ var modehate = function(dbot) {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
'listener': function(data, params) {
|
'listener': function(data, params) {
|
||||||
console.log(data.raw[0].indexOf('-o'));
|
// TODO clean this shit up ffs
|
||||||
if(dbot.db.modehate.include(data.user) && data.raw[0].indexOf('-o') != -1) {
|
if(data.raw[0].indexOf('-oooo') != -1) {
|
||||||
|
dbot.instance.send('KICK #42 ' + data.user + ' :gtfo - mass deop protection');
|
||||||
|
} else if(dbot.db.modehate.include(data.user) && data.raw[0].indexOf('-o') != -1) {
|
||||||
dbot.instance.send('KICK #42 ' + data.user + ' :gtfo');
|
dbot.instance.send('KICK #42 ' + data.user + ' :gtfo');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user