From 9254bd215ccf28ce930febfb1294c09f0efde033 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Fri, 9 Aug 2024 20:25:36 -0500 Subject: [PATCH] I'm tired of this... --- main.cjs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/main.cjs b/main.cjs index eb2ea38..a37c1ca 100644 --- a/main.cjs +++ b/main.cjs @@ -148,6 +148,9 @@ client.on('messageCreate', message => { client.on('messageUpdate', (undefined, newMessage) => { //checkMessage(newMessage, false); + if (message.author.id == "1091120267851485215") { + return; + } if (typeof message !== undefined) { return; } @@ -182,10 +185,7 @@ function getMatchingPhrase(inputString, targetCharacter) { global.clenseDegeneracy = function clenseDegeneracy(message) { function normalizeString(str) { - // Define a mapping of characters to 's' - const sMap = { '$': 's', '5': 's', 'š': 's'}; - - // Replace similar characters with 's' + const sMap = { '$': 's', '5': 's', 'š': 's', 'ß': 's'}; return str.split('').map(char => sMap[char] || char).join(''); } let checkString = normalizeString(message.content.toLowerCase()); @@ -204,8 +204,6 @@ function getMatchingPhrase(inputString, targetCharacter) { checkString = checkString.replace(/[^a-zA-Z0-9]/g, ''); console.log(checkString); checkLoop(message, checkString); - - } /* Main bot logic. Check for abbreviations by splitting the message at any non-word characters, then if we find a match, create a new array, replace the abbreviation with the phrase, then call replyMessage() and reply to the original message with the corrected one.