Update 'node/autoban.js'
This commit is contained in:
parent
989a146fb2
commit
2461ab9156
|
@ -1,5 +1,5 @@
|
||||||
require('dotenv').config();
|
|
||||||
const tmi = require('tmi.js');
|
const tmi = require('tmi.js');
|
||||||
|
require('dotenv').config();
|
||||||
const colors = require('colors');
|
const colors = require('colors');
|
||||||
const config = require("./db/lurk_bots");
|
const config = require("./db/lurk_bots");
|
||||||
|
|
||||||
|
@ -44,8 +44,12 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
const cmd_unban = client.say();
|
const cmd_unban = client.say();
|
||||||
// Mods
|
// Mods
|
||||||
if(isMod) {
|
if(isMod) {
|
||||||
if(command === 'banbots') {}
|
if(command === 'banbots') {
|
||||||
if(command === 'unbanbots') {}
|
|
||||||
|
}
|
||||||
|
if(command === 'unbanbots') {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Mods + Streamer
|
// Mods + Streamer
|
||||||
if(isModUp) {
|
if(isModUp) {
|
||||||
|
|
Loading…
Reference in New Issue