Implement OCR

master
Chloe Fontenot 🏳️‍⚧️ 2024-08-09 22:59:22 +07:00
parent 82e8f2387f
commit 99c8cef7a1
1 changed files with 2 additions and 2 deletions

@ -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)) {