From d6eb37b2264421beed19741b172ba806093668a3 Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sun, 4 Dec 2011 17:05:23 +0000 Subject: [PATCH] quick fix for 42 because its not pulling channel right from jsbot --- modules/modehate.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/modehate.js b/modules/modehate.js index 46f3d9f..b769198 100644 --- a/modules/modehate.js +++ b/modules/modehate.js @@ -3,11 +3,8 @@ var modehate = function(dbot) { return { 'listener': function(data, params) { - console.log('THIS: ' + data.raw[0]); if(data.raw[0].indexOf('-oooo') != -1) { - console.log('test'); - console.log('KICK ' + data.channel + ' ' + data.user + ' :gtfo - mass deop protection'); - dbot.instance.send('KICK ' + data.channel + ' ' + data.user + ' :gtfo - mass deop protection'); + 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 ' + data.channel + ' ' + data.user + ' :gtfo'); }