diff --git a/node/boto.js b/node/boto.js index 61d48d8..b266d8e 100644 --- a/node/boto.js +++ b/node/boto.js @@ -34,8 +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`) + if(command === 'cord' || + command === 'discord') { + client.say(channel, `/me The Cord by Sarimoko is joinable & sharable at: https://cord.sarimoko.com/`); }