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}`); });