I'm tired of this...

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 20:36:19 -05:00
parent 17e120c62b
commit 421ccd6d6c

View File

@ -196,11 +196,14 @@ function getMatchingPhrase(inputString, targetCharacter) {
if (content.includes(checkArray[i])) {
console.log("match!");
message.delete();
return true;
}
}
return false;
}
if (checkLoop(message, checkString)) {
return;
}
}
}
checkLoop(message, checkString);
checkString = checkString.replace(/[^a-zA-Z0-9]/g, '');
checkLoop(message, checkString);
}