From 9e22a2a87a295aa4d8824c184daec2badef590ea Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sat, 12 Feb 2022 05:26:12 +0000 Subject: [PATCH] Update 'node/boto.js' --- node/boto.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/node/boto.js b/node/boto.js index b266d8e..7cb4c8b 100644 --- a/node/boto.js +++ b/node/boto.js @@ -34,10 +34,13 @@ 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 + if(command === 'cord' || command === 'discord') { client.say(channel, `/me The Cord by Sarimoko is joinable & sharable at: https://cord.sarimoko.com/`); } - + if(isModUp) { + client.say(channel, `A MOD has spoken...`); + } }); // SCAN MSG | END \ No newline at end of file