quick fix for 42 because its not pulling channel right from jsbot

This commit is contained in:
Luke Slater 2011-12-04 17:05:23 +00:00
parent d0b3b5252c
commit d6eb37b226

View File

@ -3,11 +3,8 @@ var modehate = function(dbot) {
return { return {
'listener': function(data, params) { 'listener': function(data, params) {
console.log('THIS: ' + data.raw[0]);
if(data.raw[0].indexOf('-oooo') != -1) { if(data.raw[0].indexOf('-oooo') != -1) {
console.log('test'); dbot.instance.send('KICK #42 ' + data.user + ' :gtfo - mass deop protection');
console.log('KICK ' + data.channel + ' ' + data.user + ' :gtfo - mass deop protection');
dbot.instance.send('KICK ' + data.channel + ' ' + data.user + ' :gtfo - mass deop protection');
} else if(dbot.db.modehate.include(data.user) && data.raw[0].indexOf('-o') != -1) { } else if(dbot.db.modehate.include(data.user) && data.raw[0].indexOf('-o') != -1) {
dbot.instance.send('KICK ' + data.channel + ' ' + data.user + ' :gtfo'); dbot.instance.send('KICK ' + data.channel + ' ' + data.user + ' :gtfo');
} }