From e0d5052971fea90039ebd32620c81a566974329a Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sat, 12 Feb 2022 05:23:13 +0000 Subject: [PATCH] Update 'node/boto.js' --- node/boto.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/node/boto.js b/node/boto.js index d033ca4..61d48d8 100644 --- a/node/boto.js +++ b/node/boto.js @@ -34,6 +34,9 @@ client.on('message', (channel, tags, message, self) => { if(self || !message.startsWith('!')) return; // Command Parser const args = message.slice(1).split(' '); const command = args.shift().toLowerCase(); // !COMMAND => command + else{ + console.log(`Command not found`) + } }); // SCAN MSG | END \ No newline at end of file