diff --git a/modules/modehate.js b/modules/modehate.js index 9941b17..46ed6d2 100644 --- a/modules/modehate.js +++ b/modules/modehate.js @@ -3,9 +3,7 @@ var modehate = function(dbot) { return { 'listener': function(data, params) { - console.log(typeof(data.raw[0])); - console.log(data.raw[0]); - if(dbot.db.modehate.include(data.user) && data.raw.indexOf('-o') != -1) { + if(dbot.db.modehate.include(data.user) && data.raw[0].indexOf('-o') != -1) { dbot.instance.send('KICK #42 ' + data.user + ' :gtfo'); } },