diff --git a/modules/modehate.js b/modules/modehate.js index 78eb0b2..6fec54d 100644 --- a/modules/modehate.js +++ b/modules/modehate.js @@ -3,8 +3,10 @@ var modehate = function(dbot) { return { 'listener': function(data, params) { - console.log(data.raw[0].indexOf('-o')); - if(dbot.db.modehate.include(data.user) && data.raw[0].indexOf('-o') != -1) { + // TODO clean this shit up ffs + 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'); } },