From 8053eb44d9207acdac84475f1ee413b10063f7d1 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Mon, 14 Feb 2022 03:15:17 -0800 Subject: [PATCH] init --- node/boto.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/node/boto.js b/node/boto.js index 76ccb04..4676453 100644 --- a/node/boto.js +++ b/node/boto.js @@ -22,10 +22,9 @@ const client = new tmi.Client({ client.connect(); -// import { rnguser } from "./rng.js"; -// rnguser(); +import { rnguser } from "./rng.js"; +rnguser(); -// SCAN MSG | START client.on('message', (channel, tags, message, self) => { if(self) return; const badges = tags.badges || {}; // Scan Badges @@ -40,12 +39,10 @@ client.on('message', (channel, tags, message, self) => { const args = message.slice(1).split(' '); const command = args.shift().toLowerCase(); // !COMMAND => command - // import { cmd_general } from "./cmd/general.js"; // cmd_general(); // import { cmd_subs } from "./cmd/subs.js"; // cmd_suds(); // import { cmd_mods } from "./cmd/mods.js"; // cmd_mods(); - -}); // SCAN MSG | END +}); \ No newline at end of file