From 6b77e31be5c92df800078a61639672171116fcc5 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sun, 13 Feb 2022 04:13:59 +0000 Subject: [PATCH] Update 'www/boto.js' --- www/boto.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/boto.js b/www/boto.js index 4793d95..463e94c 100644 --- a/www/boto.js +++ b/www/boto.js @@ -11,6 +11,7 @@ const client = new tmi.Client({ client.connect(); client.on('message', (channel, tags, message, self) => { + if(self) return; // "Alca: Hello, World!" console.log(`${tags['display-name']}: ${message}`); });