diff --git a/main.cjs b/main.cjs index 09d02e1..111e0e5 100644 --- a/main.cjs +++ b/main.cjs @@ -192,13 +192,13 @@ function getMatchingPhrase(inputString, targetCharacter) { let checkArray = ["ussy", "ussies", "uthy", "yssu", "suuy", "urssy"]; function checkLoop(message, content) { console.log("Checking " + content + "..."); - for (let i: checkArray) { + checkArray.forEach(i => { if (content.includes(i)) { console.log("match!"); message.delete(); return true; } - } + }); return false; } if (checkLoop(message, checkString)) {