From 6355ca9d440e0c35686b21c96d0324fc39d46206 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Wed, 28 Apr 2021 19:17:19 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=98=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/natural-language-commands.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/services/natural-language-commands.ts b/src/services/natural-language-commands.ts index 829e2d1..608f574 100644 --- a/src/services/natural-language-commands.ts +++ b/src/services/natural-language-commands.ts @@ -39,6 +39,15 @@ export default class { return true; } + if (msg.content.toLowerCase().includes('bitconnect')) { + await Promise.all([ + msg.channel.send('🌊 🌊 🌊 🌊'), + this.playClip(msg.guild!, {title: 'BITCONNEEECCT', artist: 'Carlos Matos', url: 'https://www.youtube.com/watch?v=lCcwn6bGUtU', length: 227, playlist: null, isLive: false}, 50, 13) + ]); + + return true; + } + return false; }