Update 'node/autoban.js'

This commit is contained in:
Sarimoko 2022-02-18 05:18:23 +00:00
parent 989a146fb2
commit 2461ab9156
1 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
require('dotenv').config();
const tmi = require('tmi.js');
require('dotenv').config();
const colors = require('colors');
const config = require("./db/lurk_bots");
@ -44,8 +44,12 @@ client.on('message', (channel, tags, message, self) => {
const cmd_unban = client.say();
// Mods
if(isMod) {
if(command === 'banbots') {}
if(command === 'unbanbots') {}
if(command === 'banbots') {
}
if(command === 'unbanbots') {
}
}
// Mods + Streamer
if(isModUp) {