diff --git a/index.js b/index.js index 69aad1c..d487d5d 100644 --- a/index.js +++ b/index.js @@ -42,6 +42,12 @@ client.on('message', message => { // Get the filename and extension as an array const file = functions.getFileInfo(message.content); if (!file) return; + + // Out here smoking big doinks in Amish + if (message.content.toLocaleLowerCase.includes('big doinks')) { + message.channel.send('gang.'); + } + // If the message is from a bot, or doesn't have a valid file extension, stop here. if (functions.extIsValid(file.extension) == false || message.author.bot) return;