big doinks

This commit is contained in:
= 2021-08-08 18:56:16 -04:00
parent 6ed02de8dc
commit 056f7e6cce
1 changed files with 6 additions and 0 deletions

View File

@ -42,6 +42,12 @@ client.on('message', message => {
// Get the filename and extension as an array // Get the filename and extension as an array
const file = functions.getFileInfo(message.content); const file = functions.getFileInfo(message.content);
if (!file) return; 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 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; if (functions.extIsValid(file.extension) == false || message.author.bot) return;